diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/python-compression.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r-- | gnu/packages/python-compression.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index e7f008e112..edfa974a71 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -227,9 +227,6 @@ the LZO library from your Python scripts thereby compressing ordinary Python strings.") (license license:gpl2+))) -(define-public python2-lzo - (package-with-python2 python-lzo)) - (define-public python-lz4 (package (name "python-lz4") @@ -260,9 +257,6 @@ by Yann Collet. The project contains bindings for the LZ4 block format and the LZ4 frame format.") (license license:bsd-3))) -(define-public python2-lz4 - (package-with-python2 python-lz4)) - (define-public python-lzstring (package (name "python-lzstring") @@ -282,9 +276,6 @@ the LZ4 frame format.") (description "Lz-string is a string compressor library for Python.") (license license:expat))) -(define-public python2-lzstring - (package-with-python2 python-lzstring)) - (define-public bitshuffle (package (name "bitshuffle") @@ -392,31 +383,8 @@ install: libbitshuffle.so (description "This package provides a @code{pathlib}-compatible @code{Zipfile} object wrapper. It provides a backport of the @code{Path} object.") - (properties `((python2-variant . ,(delay python2-zipp)))) (license license:expat))) -(define-public python2-zipp - (let ((base (package-with-python2 (strip-python2-variant python-zipp)))) - (package/inherit - base - (native-inputs - `(("python-contextlib2" ,python2-contextlib2) - ("python-pathlib2" ,python2-pathlib2) - ("python-unittest2" ,python2-unittest2) - ,@(package-native-inputs base)))))) - -;; This package is used to bootstrap pytest, via importlib-metadata. -(define-public python2-zipp-bootstrap - (hidden-package - (package/inherit - python2-zipp - (name "python2-zipp-bootstrap") - (arguments - `(#:tests? #f - ,@(package-arguments python2-zipp))) - (native-inputs - `(("python-setuptools-scm" ,python2-setuptools-scm)))))) - (define-public python-zopfli (package (name "python-zopfli") |