diff options
| author | Brendan Tildesley <mail@brendan.scot> | 2021-03-10 18:32:25 +1100 |
|---|---|---|
| committer | Leo Famulari <leo@famulari.name> | 2021-04-09 16:09:25 -0400 |
| commit | dde1c7655d697a12ef18792ae732f51cdd9de32a (patch) | |
| tree | f20c03f8268f482cb257365ea394e7295ebaa451 /gnu/packages/python-compression.scm | |
| parent | 852f9324857c616da7d74a9aede83016e9082fc0 (diff) | |
gnu: Add python-pyzstd
* gnu/packages/python-compression.scm (python-pyzstd): New variable.
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index f87eacc853b..ab2eca27437 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm | |||
| @@ -363,3 +363,21 @@ wrapper. It provides a backport of the @code{Path} object.") | |||
| 363 | the Zstandard compression library. A C extension and CFFI interface are | 363 | the Zstandard compression library. A C extension and CFFI interface are |
| 364 | provided.") | 364 | provided.") |
| 365 | (license license:bsd-3))) | 365 | (license license:bsd-3))) |
| 366 | |||
| 367 | (define-public python-pyzstd | ||
| 368 | (package | ||
| 369 | (name "python-pyzstd") | ||
| 370 | (version "0.14.3") | ||
| 371 | (source | ||
| 372 | (origin | ||
| 373 | (method url-fetch) | ||
| 374 | (uri (pypi-uri "pyzstd" version)) | ||
| 375 | (sha256 | ||
| 376 | (base32 | ||
| 377 | "1d3mngs45w2p490vrq5ymd2wz4lp15phmks1ilcx4k7amgibml3d")))) | ||
| 378 | (build-system python-build-system) | ||
| 379 | (home-page "https://github.com/animalize/pyzstd") | ||
| 380 | (synopsis "Zstandard bindings for Python") | ||
| 381 | (description "This package provides Python bindings to the Zstandard (zstd) | ||
| 382 | compression library. The API is similar to Python's bz2/lzma/zlib module.") | ||
| 383 | (license license:bsd-3))) | ||
