me
/
guix
Archived
1
0
Fork 0

gnu: Add python-immutables.

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

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
master
Vinicius Monego 2020-08-05 12:33:15 -03:00 committed by Mathieu Othacehe
parent f8380178d5
commit 647bbd9e9a
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 19 additions and 0 deletions

View File

@ -8551,6 +8551,25 @@ Unicode-aware. It is not intended as an end-user tool.")
(define-public python2-xlrd (define-public python2-xlrd
(package-with-python2 python-xlrd)) (package-with-python2 python-xlrd))
(define-public python-immutables
(package
(name "python-immutables")
(version "0.14")
(source
(origin
(method url-fetch)
(uri (pypi-uri "immutables" version))
(sha256
(base32 "0y0aqw29g525frdnmv9paljzacpp4s21sadfbca5b137iciwr8d0"))))
(build-system python-build-system)
(home-page "https://github.com/MagicStack/immutables")
(synopsis "High-performance immutable mapping type for Python")
(description
"An immutable mapping type for Python. The underlying datastructure is a
Hash Array Mapped Trie (HAMT) used in Clojure, Scala, Haskell, and other
functional languages.")
(license license:asl2.0)))
(define-public python-prettytable (define-public python-prettytable
(package (package
(name "python-prettytable") (name "python-prettytable")