guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add python-datrie.


From: Ricardo Wurmus
Subject: 01/03: gnu: Add python-datrie.
Date: Fri, 27 Jul 2018 09:30:47 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 216a72a95738d6d643094f156000cbc006cd79f5
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jul 27 15:07:12 2018 +0200

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f20de13..1422ad2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5136,6 +5136,30 @@ of the structure, dynamics, and functions of complex 
networks.")
 (define-public python2-networkx2
   (package-with-python2 python-networkx2))
 
+(define-public python-datrie
+  (package
+    (name "python-datrie")
+    (version "0.7.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "datrie" version))
+       (sha256
+        (base32
+         "08r0if7dry2q7p34gf7ffyrlnf4bdvnprxgydlfxgfnvq8f3f4bs"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-cython" ,python-cython)
+       ("python-hypothesis" ,python-hypothesis)
+       ("python-pytest" ,python-pytest)
+       ("python-pytest-runner" ,python-pytest-runner)))
+    (home-page "https://github.com/kmike/datrie";)
+    (synopsis "Fast, efficiently stored trie for Python")
+    (description
+     "This package provides a fast, efficiently stored trie implementation for
+Python.")
+    (license license:lgpl2.1+)))
+
 (define-public snakemake
   (package
     (name "snakemake")



reply via email to

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