guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: Add python-numcodecs.


From: guix-commits
Subject: 02/05: gnu: Add python-numcodecs.
Date: Thu, 5 Mar 2020 15:50:32 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 241409cd8afe45fdecfbd7d24cdeb08aa2a43884
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Thu Mar 5 21:45:46 2020 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7003f60..0642d32 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15734,6 +15734,31 @@ infrastructure at import time, runtime, or statically 
(using the included pycc
 tool).")
     (license license:bsd-3)))
 
+(define-public python-numcodecs
+  (package
+    (name "python-numcodecs")
+    (version "0.6.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "numcodecs" version))
+       (sha256
+        (base32
+         "0kbfr8pl3x9glsypbq8hzim003f16ml1b1cvgrh4w1sdvgal6j7g"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-numpy" ,python-numpy)
+       ("python-msgpack" ,python-msgpack)))
+    (native-inputs
+     `(("python-pytest" ,python-pytest)
+       ("python-setuptools-scm" ,python-setuptools-scm)))
+    (home-page "https://github.com/zarr-developers/numcodecs";)
+    (synopsis "Buffer compression and transformation codecs")
+    (description
+     "This Python package provides buffer compression and transformation
+codecs for use in data storage and communication applications.")
+    (license license:expat)))
+
 (define-public python-anndata
   (package
     (name "python-anndata")



reply via email to

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