me
/
guix
Archived
1
0
Fork 0

gnu: Add python-dotmap

* gnu/packages/python-xyz.scm: New variable

Signed-off-by: Christopher Baines <mail@cbaines.net>
master
Ryan Tolboom 2022-10-12 15:44:34 -04:00 committed by Christopher Baines
parent fc68b97db1
commit cbaf47bb8b
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 19 additions and 0 deletions

View File

@ -496,6 +496,25 @@ and variables you'll need already imported and created.
(home-page "https://github.com/google/python-fire")
(license license:asl2.0)))
(define-public python-dotmap
(package
(name "python-dotmap")
(version "1.3.30")
(source (origin
(method url-fetch)
(uri (pypi-uri "dotmap" version))
(sha256
(base32
"0s5kb2v7jd0narz6m6jcicak3h5pw290wz21cdsv8pq77y9sf8aq"))))
(build-system python-build-system)
(home-page "https://github.com/drgrib/dotmap")
(synopsis "Ordered, dynamically-expandable dot-access dictionary")
(description
"DotMap is a dot-access dictionary subclass that has dynamic
hierarchy creation, can be initialized with keys, can be initialized from a
dictionary, can be convert to a dictionary, and is ordered by insertion.")
(license license:expat)))
(define-public python-twodict
(package
(name "python-twodict")