From 01921e38cd25ae154f3025fb04411a0f2df08e3a Mon Sep 17 00:00:00 2001 From: Julie Koubova Date: Sun, 19 Jan 2025 11:42:32 +0000 Subject: [PATCH] user/python-dotty-dict: new package --- user/python-dotty-dict/template.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 user/python-dotty-dict/template.py diff --git a/user/python-dotty-dict/template.py b/user/python-dotty-dict/template.py new file mode 100644 index 00000000000..3344b3a5a25 --- /dev/null +++ b/user/python-dotty-dict/template.py @@ -0,0 +1,24 @@ +pkgname = "python-dotty-dict" +pkgver = "1.3.1" +pkgrel = 0 +build_style = "python_pep517" +hostmakedepends = [ + "python-build", + "python-installer", + "python-setuptools", + "python-poetry-core", +] +depends = ["python"] +pkgdesc = "Dictionary wrapper for quick access to deeply nested keys" +maintainer = "Julie Koubova " +license = "MIT" +url = "https://github.com/pawelzny/dotty_dict" +source = f"$(PYPI_SITE)/d/dotty-dict/dotty_dict-{pkgver}.tar.gz" +sha256 = "4b016e03b8ae265539757a53eba24b9bfda506fb94fbce0bee843c6f05541a15" +# no tests +options = ["!check"] + +def post_install(self): + self.install_license("LICENSE") + +