guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/12: gnu: Add python-pygtrie.


From: guix-commits
Subject: 11/12: gnu: Add python-pygtrie.
Date: Mon, 12 Dec 2022 09:01:21 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit bc47a1bf02e9071743d56243ba5aabf4b764afc5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Dec 11 15:47:18 2022 +0100

    gnu: Add python-pygtrie.
    
    * gnu/packages/python-xyz.scm (python-pygtrie): New variable.
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d429a4a734..4298fd4c40 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]