summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2020-01-03 00:11:48 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2020-01-03 00:11:48 +0100
commitf4a20dca357987021e692e4b4718e8ddf8d649db (patch)
tree6a842801ef84fff60a5d9668c6cfe91a5dfb9ed8
parent170441660968b1b294154307903613302cbb18db (diff)
gnu: Add python-zstandard.
* gnu/packages/python-compression.scm (python-zstandard): New variable.
-rw-r--r--gnu/packages/python-compression.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index 705a7ffa3bb..c7354bacc18 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -234,3 +234,23 @@ install: libbitshuffle.so
234 "This package provides a @code{pathlib}-compatible @code{Zipfile} object 234 "This package provides a @code{pathlib}-compatible @code{Zipfile} object
235wrapper. It provides a backport of the @code{Path} object.") 235wrapper. It provides a backport of the @code{Path} object.")
236 (license license:expat))) 236 (license license:expat)))
237
238(define-public python-zstandard
239 (package
240 (name "python-zstandard")
241 (version "0.13.0")
242 (source
243 (origin
244 (method url-fetch)
245 (uri (pypi-uri "zstandard" version))
246 (sha256
247 (base32 "0q9msi00s93iqm8vzd839r7yc51gz54z90h5bckqyjdxa6vxijz5"))))
248 (build-system python-build-system)
249 (native-inputs
250 `(("python-hypothesis" ,python-hypothesis)))
251 (home-page "https://github.com/indygreg/python-zstandard")
252 (synopsis "Zstandard bindings for Python")
253 (description "This project provides Python bindings for interfacing
254with the Zstandard compression library. A C extension and CFFI
255interface are provided.")
256 (license license:bsd-3)))