guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: Add python-box.


From: guix-commits
Subject: 08/09: gnu: Add python-box.
Date: Fri, 24 Sep 2021 08:31:35 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 7020012817196d0918d17318a61737a22a738502
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Mon Aug 30 01:36:55 2021 +0200

    gnu: Add python-box.
    
    * gnu/packages/python-xyz.scm (python-box): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 299aa05..44ddb63 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26845,3 +26845,26 @@ single-platform apps, there may by plenty of nuances 
in figuring out the right
 location.  This small Python module determines the appropriate
 platform-specific directories, e.g. the ``user data dir''.")
     (license license:expat)))
+
+(define-public python-box
+  (package
+    (name "python-box")
+    (version "5.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "python-box" version))
+       (sha256
+        (base32
+         "0jhrdif57khx2hsw1q6a9x42knwcvq8ijgqyq1jmll6y6ifyzm2f"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-msgpack" ,python-msgpack)
+       ("python-ruamel.yaml" ,python-ruamel.yaml)
+       ("python-toml" ,python-toml)))
+    (home-page "https://github.com/cdgriffith/Box";)
+    (synopsis "Advanced Python dictionaries with dot notation access")
+    (description
+     "This package provides the @code{python-box} Python module.
+It implements advanced Python dictionaries with dot notation access.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]