mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python-pygtrie.
* gnu/packages/python-xyz.scm (python-pygtrie): New variable.
This commit is contained in:
parent
49ec1fbc8f
commit
bc47a1bf02
1 changed files with 17 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue