[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49834] [PATCH 3/6] gnu: Add python-box.
From: |
Giacomo Leidi |
Subject: |
[bug#49834] [PATCH 3/6] gnu: Add python-box. |
Date: |
Sat, 28 Aug 2021 13:51:50 +0200 |
* gnu/packages/python-xyz.scm (python-box): New variable.
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 128ac9fd0c..caff26e872 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26324,3 +26324,27 @@ graph can be output for rendering by GraphViz or yEd.")
"This package provides the @code{python-dotenv} Python module to
read key-value pairs from a .env file and set them as environment variables")
(license license:bsd-3)))
+
+(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)))
--
2.33.0
- [bug#49832] [PATCH 4/7] gnu: Add python-box., (continued)
- [bug#49832] [PATCH 4/7] gnu: Add python-box., Giacomo Leidi, 2021/08/02
- [bug#49833] [PATCH 3/7] gnu: Add python-dotenv., Giacomo Leidi, 2021/08/02
- [bug#49835] [PATCH 7/7] gnu: Add dynaconf., Giacomo Leidi, 2021/08/02
- [bug#49281] Add dynaconf, Sarah Morgensen, 2021/08/04
- [bug#49834] [PATCH 1/6] gnu: Add python-flake8-todo., Giacomo Leidi, 2021/08/28
- [bug#49834] Add dynaconf, Sarah Morgensen, 2021/08/28
- [bug#49834] [PATCH 1/4] gnu: Add python-dotenv., Giacomo Leidi, 2021/08/29