gnu: Add python-pygtrie.

* gnu/packages/python-xyz.scm (python-pygtrie): New variable.
This commit is contained in:
Ricardo Wurmus 2022-12-11 15:47:18 +01:00
parent 49ec1fbc8f
commit bc47a1bf02
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4978,6 +4978,23 @@ (define-public python-pygments-github-lexers
(description "This package installs Github custom lexers to Pygments.") (description "This package installs Github custom lexers to Pygments.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public python-pygtrie
(package
(name "python-pygtrie")
(version "2.5.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "pygtrie" version))
(sha256
(base32
"1qm4xdmzd4q5pc9h5gjdpr5m7lg06k8dvqnjn7d07d3fhani8d90"))))
(build-system pyproject-build-system)
(home-page "https://github.com/mina86/pygtrie")
(synopsis "Pure Python trie data structure implementation")
(description
"This package provides a pure Python trie data structure implementation.")
(license license:asl2.0)))
(define-public python-bump2version (define-public python-bump2version
(package (package
(name "python-bump2version") (name "python-bump2version")