[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59607] [PATCH 3/8] gnu: Add python-addict.
From: |
Liliana Marie Prikler |
Subject: |
[bug#59607] [PATCH 3/8] gnu: Add python-addict. |
Date: |
Sun, 20 Nov 2022 10:10:55 +0100 |
* gnu/packages/python-xyz.scm (python-addict): New variable.
---
gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7fefbc5bff..d0591b4614 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -581,6 +581,24 @@ (define-public python-dotmap
dictionary, can be convert to a dictionary, and is ordered by insertion.")
(license license:expat)))
+(define-public python-addict
+ (package
+ (name "python-addict")
+ (version "2.4.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "addict" version))
+ (sha256
+ (base32
+ "1574sicy5ydx9pvva3lbx8qp56z9jbdwbj26aqgjhyh61q723cmk"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/mewwts/addict")
+ (synopsis "Dictionaries with items as attributes")
+ (description
+ "This package provides a dictionary type, whose values are both gettable
+and settable using attributes, in addition to standard item-syntax.")
+ (license license:expat)))
+
(define-public python-twodict
(package
(name "python-twodict")
--
2.38.1
- [bug#59607] [PATCH 0/8] Upscale your anime pictures, now with 99% less malware, Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 1/8] gnu: Add ncnn., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 7/8] gnu: Add python-gfpgan., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 8/8] gnu: Add python-real-esrgan., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 5/8] gnu: Add python-filterpy., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 4/8] gnu: Add python-basicsr., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 6/8] gnu: Add python-facexlib., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 2/8] gnu: Add real-esrgan-ncnn., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 3/8] gnu: Add python-addict.,
Liliana Marie Prikler <=