me
/
guix
Archived
1
0
Fork 0

gnu: Add python-immutabledict.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Vinicius Monego 2021-10-21 03:52:47 +00:00 committed by Efraim Flashner
parent b43ad8400a
commit 3a4107b286
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -9693,6 +9693,29 @@ applications.")
"PyZMQ is the official Python binding for the ZeroMQ messaging library.") "PyZMQ is the official Python binding for the ZeroMQ messaging library.")
(license license:bsd-4))) (license license:bsd-4)))
(define-public python-immutabledict
(package
(name "python-immutabledict")
(version "2.2.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "immutabledict" version))
(sha256
(base32 "0fpc4gbk7inpfbgdypsg6c18bmdjw8gwx47bjw0hvixn3gghxnqx"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; no tests in PyPI release and no setup.py in GitHub
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/corenting/immutabledict")
(synopsis "Immutable wrapper around dictionaries")
(description
"@dfn{immutabledict} is an immutable wrapper around dictionaries.
It implements the complete mapping interface and can be used as a drop-in
replacement for dictionaries where immutability is desired.")
(license license:expat)))
(define-public python-pep8 (define-public python-pep8
;; This package has been renamed to pycodestyle and is no longer updated. ;; This package has been renamed to pycodestyle and is no longer updated.
;; Its last release (1.7.1) adds only a scary warning to this effect, breaking ;; Its last release (1.7.1) adds only a scary warning to this effect, breaking