me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pygtrie.

* gnu/packages/python-xyz.scm (python-pygtrie): New variable.
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
1 changed files with 17 additions and 0 deletions

View File

@ -4978,6 +4978,23 @@ text styles of documentation.")
(description "This package installs Github custom lexers to Pygments.")
(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
(package
(name "python-bump2version")