diff options
| author | Lars-Dominik Braun <lars@6xq.net> | 2023-05-11 08:33:02 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:15:41 +0000 |
| commit | fdc0fefd46a45b70784a4e3f8900cbe593426a9e (patch) | |
| tree | 13c3736334bde1c3ec75d67f4e430396e23eed3f /gnu/packages/python-compression.scm | |
| parent | ca945f7c35bbc5d05a6ad7e5baa15f79e0fd0ecc (diff) | |
build-system/pyproject: Use python-sans-pip-wrapper as default-python.
Also adds python-setuptools and python-wheel to relevant packages,
either to native-inputs or to propagated inputs if the pkg_resources
Python module is loaded at runtime.
* guix/build-system/pyproject.scm (default-python): Default to
python-sans-pip-wrapper.
Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 5a6383facc6..3c15b1b682a 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm | |||
| @@ -114,7 +114,9 @@ This Python package wraps the Blosc library.") | |||
| 114 | python-hypothesis | 114 | python-hypothesis |
| 115 | python-pyannotate | 115 | python-pyannotate |
| 116 | python-pytest | 116 | python-pytest |
| 117 | python-pytest-cov)) | 117 | python-pytest-cov |
| 118 | python-setuptools | ||
| 119 | python-wheel)) | ||
| 118 | (home-page "https://github.com/miurahr/multivolume") | 120 | (home-page "https://github.com/miurahr/multivolume") |
| 119 | (synopsis "Treat multiple files as one") | 121 | (synopsis "Treat multiple files as one") |
| 120 | (description "MultiVolumefile is a Python library that provides a | 122 | (description "MultiVolumefile is a Python library that provides a |
| @@ -251,7 +253,9 @@ following algorithms are available: | |||
| 251 | python-hypothesis | 253 | python-hypothesis |
| 252 | python-pytest | 254 | python-pytest |
| 253 | python-pytest-cov | 255 | python-pytest-cov |
| 254 | python-setuptools-scm)) | 256 | python-setuptools-scm |
| 257 | python-setuptools | ||
| 258 | python-wheel)) | ||
| 255 | (home-page "https://codeberg.org/miurahr/pybcj") | 259 | (home-page "https://codeberg.org/miurahr/pybcj") |
| 256 | (synopsis "BCJ filter library") | 260 | (synopsis "BCJ filter library") |
| 257 | (description "In data compression, BCJ, short for Branch-Call-Jump, refers | 261 | (description "In data compression, BCJ, short for Branch-Call-Jump, refers |
| @@ -311,6 +315,7 @@ Jump conversion filter by CFFI for Python.") | |||
| 311 | (setenv "USE_SHARED_BROTLI" "1")))))) | 315 | (setenv "USE_SHARED_BROTLI" "1")))))) |
| 312 | (propagated-inputs (list python-cffi)) | 316 | (propagated-inputs (list python-cffi)) |
| 313 | (inputs (list brotli)) | 317 | (inputs (list brotli)) |
| 318 | (native-inputs (list python-setuptools python-wheel)) | ||
| 314 | (home-page "https://github.com/python-hyper/brotlicffi") | 319 | (home-page "https://github.com/python-hyper/brotlicffi") |
| 315 | (synopsis "Python CFFI bindings to the Brotli library") | 320 | (synopsis "Python CFFI bindings to the Brotli library") |
| 316 | (description "This package provides Python CFFI bindings to the Brotli | 321 | (description "This package provides Python CFFI bindings to the Brotli |
| @@ -332,7 +337,9 @@ library.") | |||
| 332 | (native-inputs | 337 | (native-inputs |
| 333 | (list python-pyannotate | 338 | (list python-pyannotate |
| 334 | python-pytest | 339 | python-pytest |
| 335 | python-setuptools-scm)) | 340 | python-setuptools-scm |
| 341 | python-setuptools | ||
| 342 | python-wheel)) | ||
| 336 | (home-page "https://pypi.org/project/inflate64/") | 343 | (home-page "https://pypi.org/project/inflate64/") |
| 337 | (synopsis "Compression/decompression library") | 344 | (synopsis "Compression/decompression library") |
| 338 | (description "The @code{inflate64} package provides @code{Deflater} and | 345 | (description "The @code{inflate64} package provides @code{Deflater} and |
| @@ -361,7 +368,7 @@ compression algorithm.") | |||
| 361 | (add-after 'unpack 'use-dynamic-linking | 368 | (add-after 'unpack 'use-dynamic-linking |
| 362 | (lambda _ (setenv "PYTHON_ISAL_LINK_DYNAMIC" "1")))))) | 369 | (lambda _ (setenv "PYTHON_ISAL_LINK_DYNAMIC" "1")))))) |
| 363 | (inputs (list isa-l)) | 370 | (inputs (list isa-l)) |
| 364 | (native-inputs (list python-cython)) | 371 | (native-inputs (list python-cython python-setuptools python-wheel)) |
| 365 | (home-page "https://github.com/pycompression/python-isal") | 372 | (home-page "https://github.com/pycompression/python-isal") |
| 366 | (synopsis "Python bindings for the ISA-L compression library") | 373 | (synopsis "Python bindings for the ISA-L compression library") |
| 367 | (description | 374 | (description |
| @@ -407,7 +414,9 @@ headers compressed with QPACK.") | |||
| 407 | python-pytest-benchmark | 414 | python-pytest-benchmark |
| 408 | python-pytest-cov | 415 | python-pytest-cov |
| 409 | python-pytest-timeout | 416 | python-pytest-timeout |
| 410 | python-setuptools-scm)) | 417 | python-setuptools-scm |
| 418 | python-setuptools | ||
| 419 | python-wheel)) | ||
| 411 | (home-page "https://github.com/miurahr/pyppmd") | 420 | (home-page "https://github.com/miurahr/pyppmd") |
| 412 | (synopsis "PPMd compression/decompression library") | 421 | (synopsis "PPMd compression/decompression library") |
| 413 | (description "Pyppmd provides classes and functions for compressing and | 422 | (description "Pyppmd provides classes and functions for compressing and |
| @@ -468,9 +477,8 @@ several possible methods.") | |||
| 468 | python-pyzstd | 477 | python-pyzstd |
| 469 | python-texttable)) | 478 | python-texttable)) |
| 470 | (native-inputs | 479 | (native-inputs |
| 471 | (list python-setuptools | 480 | (list python-coverage |
| 472 | python-setuptools-scm | 481 | python-setuptools |
| 473 | python-coverage | ||
| 474 | python-coveralls | 482 | python-coveralls |
| 475 | python-libarchive-c | 483 | python-libarchive-c |
| 476 | python-py-cpuinfo | 484 | python-py-cpuinfo |
| @@ -479,7 +487,9 @@ several possible methods.") | |||
| 479 | python-pytest-benchmark | 487 | python-pytest-benchmark |
| 480 | python-pytest-cov | 488 | python-pytest-cov |
| 481 | python-pytest-remotedata | 489 | python-pytest-remotedata |
| 482 | python-pytest-timeout)) | 490 | python-pytest-timeout |
| 491 | python-setuptools-scm | ||
| 492 | python-wheel)) | ||
| 483 | (home-page "https://github.com/miurahr/py7zr") | 493 | (home-page "https://github.com/miurahr/py7zr") |
| 484 | (synopsis "7-zip in Python") | 494 | (synopsis "7-zip in Python") |
| 485 | (description "This package provides py7zr, which implements 7-zip | 495 | (description "This package provides py7zr, which implements 7-zip |
