summaryrefslogtreecommitdiff
path: root/gnu/packages/python-compression.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-13 17:18:24 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-13 17:48:25 +0100
commit8394619baceb118df92e355377fd543bb1aa501a (patch)
tree504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/python-compression.scm
parentaca2defe0172868295941fd9f0e97886f6e9b2d4 (diff)
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r--gnu/packages/python-compression.scm94
1 files changed, 44 insertions, 50 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index c41f837475a..641cd595a0e 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -56,14 +56,14 @@
56 "0j46wab4b09s3favjzp3zs1cn2sn8pr7qyngs5wn31hpqqxbbz76")))) 56 "0j46wab4b09s3favjzp3zs1cn2sn8pr7qyngs5wn31hpqqxbbz76"))))
57 (build-system python-build-system) 57 (build-system python-build-system)
58 (native-inputs 58 (native-inputs
59 `(("python-pep517" ,python-pep517) 59 (list python-pep517
60 ("python-setuptools" ,python-setuptools) 60 python-setuptools
61 ("python-setuptools-scm" ,python-setuptools-scm) 61 python-setuptools-scm
62 ("python-coverage" ,python-coverage) 62 python-coverage
63 ("python-coveralls" ,python-coveralls) 63 python-coveralls
64 ("python-pyannotate" ,python-pyannotate) 64 python-pyannotate
65 ("python-pytest" ,python-pytest) 65 python-pytest
66 ("python-pytest-cov" ,python-pytest-cov))) 66 python-pytest-cov))
67 (home-page "https://github.com/miurahr/multivolume") 67 (home-page "https://github.com/miurahr/multivolume")
68 (synopsis "Treat multiple files as one") 68 (synopsis "Treat multiple files as one")
69 (description "MultiVolumefile is a Python library that provides a 69 (description "MultiVolumefile is a Python library that provides a
@@ -84,14 +84,10 @@ were a single file.")
84 "1jcczrb8zgg6w7v76w1wpz3nw75fghk3xwxkn09ll7kck7sdf68d")))) 84 "1jcczrb8zgg6w7v76w1wpz3nw75fghk3xwxkn09ll7kck7sdf68d"))))
85 (build-system python-build-system) 85 (build-system python-build-system)
86 (propagated-inputs 86 (propagated-inputs
87 `(("python-cffi" ,python-cffi) 87 (list python-cffi python-toml python-setuptools-scm))
88 ("python-toml" ,python-toml)
89 ("python-setuptools-scm" ,python-setuptools-scm)))
90 (native-inputs 88 (native-inputs
91 `(("python-setuptools" ,python-setuptools) 89 (list python-setuptools python-coverage python-pytest
92 ("python-coverage" ,python-coverage) 90 python-pytest-cov))
93 ("python-pytest" ,python-pytest)
94 ("python-pytest-cov" ,python-pytest-cov)))
95 (home-page "https://github.com/miurahr/bcj-cffi") 91 (home-page "https://github.com/miurahr/bcj-cffi")
96 (synopsis "Branch / Call /Jump CFFI library in Python") 92 (synopsis "Branch / Call /Jump CFFI library in Python")
97 (description "This package provides an implementation of the Branch / Call / 93 (description "This package provides an implementation of the Branch / Call /
@@ -111,14 +107,14 @@ Jump conversion filter by CFFI for Python.")
111 "01wcd9l6pp6hivdmd275qh9dhcwficjqfl67hxix5n07vvq7jzz0")))) 107 "01wcd9l6pp6hivdmd275qh9dhcwficjqfl67hxix5n07vvq7jzz0"))))
112 (build-system python-build-system) 108 (build-system python-build-system)
113 (propagated-inputs 109 (propagated-inputs
114 `(("python-cffi" ,python-cffi))) 110 (list python-cffi))
115 (native-inputs 111 (native-inputs
116 `(("python-setuptools" ,python-setuptools) 112 (list python-setuptools
117 ("python-setuptools-scm" ,python-setuptools-scm) 113 python-setuptools-scm
118 ("python-pep517" ,python-pep517) 114 python-pep517
119 ("python-coverage" ,python-coverage) 115 python-coverage
120 ("python-pytest" ,python-pytest) 116 python-pytest
121 ("python-pytest-cov" ,python-pytest-cov))) 117 python-pytest-cov))
122 (home-page "https://github.com/miurahr/ppmd") 118 (home-page "https://github.com/miurahr/ppmd")
123 (synopsis "Prediction by Partial Matching compression library") 119 (synopsis "Prediction by Partial Matching compression library")
124 (description "PPMd is a compression algorithm library using the Prediction 120 (description "PPMd is a compression algorithm library using the Prediction
@@ -139,26 +135,26 @@ several possible methods.")
139 "1zmgp7yax328fj8yj8pj4l7yh78hp727j6wk12vfi6nmi82wl32i")))) 135 "1zmgp7yax328fj8yj8pj4l7yh78hp727j6wk12vfi6nmi82wl32i"))))
140 (build-system python-build-system) 136 (build-system python-build-system)
141 (propagated-inputs 137 (propagated-inputs
142 `(("python-bcj-cffi" ,python-bcj-cffi) 138 (list python-bcj-cffi
143 ("python-multivolumefile" ,python-multivolumefile) 139 python-multivolumefile
144 ("python-ppmd-cffi" ,python-ppmd-cffi) 140 python-ppmd-cffi
145 ("python-pycryptodome" ,python-pycryptodome) 141 python-pycryptodome
146 ("python-pyzstd" ,python-pyzstd) 142 python-pyzstd
147 ("python-texttable" ,python-texttable) 143 python-texttable
148 ("python-zstandard" ,python-zstandard))) 144 python-zstandard))
149 (native-inputs 145 (native-inputs
150 `(("python-setuptools" ,python-setuptools) 146 (list python-setuptools
151 ("python-setuptools-scm" ,python-setuptools-scm) 147 python-setuptools-scm
152 ("python-coverage" ,python-coverage) 148 python-coverage
153 ("python-coveralls" ,python-coveralls) 149 python-coveralls
154 ("python-libarchive-c" ,python-libarchive-c) 150 python-libarchive-c
155 ("python-py-cpuinfo" ,python-py-cpuinfo) 151 python-py-cpuinfo
156 ("python-pyannotate" ,python-pyannotate) 152 python-pyannotate
157 ("python-pytest" ,python-pytest) 153 python-pytest
158 ("python-pytest-benchmark" ,python-pytest-benchmark) 154 python-pytest-benchmark
159 ("python-pytest-cov" ,python-pytest-cov) 155 python-pytest-cov
160 ("python-pytest-remotedata" ,python-pytest-remotedata) 156 python-pytest-remotedata
161 ("python-pytest-timeout" ,python-pytest-timeout))) 157 python-pytest-timeout))
162 (home-page "https://github.com/miurahr/py7zr") 158 (home-page "https://github.com/miurahr/py7zr")
163 (synopsis "7-zip in Python") 159 (synopsis "7-zip in Python")
164 (description "This package provides py7zr, which implements 7-zip 160 (description "This package provides py7zr, which implements 7-zip
@@ -192,7 +188,7 @@ Python.")
192 "')"))) 188 "')")))
193 #t))))) 189 #t)))))
194 (inputs 190 (inputs
195 `(("lzo" ,lzo))) 191 (list lzo))
196 (home-page "https://github.com/jd-boyd/python-lzo") 192 (home-page "https://github.com/jd-boyd/python-lzo")
197 (synopsis "Python bindings for the LZO data compression library") 193 (synopsis "Python bindings for the LZO data compression library")
198 (description 194 (description
@@ -223,11 +219,9 @@ Python strings.")
223 #t)))) 219 #t))))
224 (build-system python-build-system) 220 (build-system python-build-system)
225 (native-inputs 221 (native-inputs
226 `(("pkg-config" ,pkg-config) 222 (list pkg-config python-nose python-setuptools-scm))
227 ("python-nose" ,python-nose)
228 ("python-setuptools-scm" ,python-setuptools-scm)))
229 (inputs 223 (inputs
230 `(("lz4" ,lz4))) 224 (list lz4))
231 (home-page "https://github.com/python-lz4/python-lz4") 225 (home-page "https://github.com/python-lz4/python-lz4")
232 (synopsis "LZ4 bindings for Python") 226 (synopsis "LZ4 bindings for Python")
233 (description 227 (description
@@ -252,7 +246,7 @@ the LZ4 frame format.")
252 "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs")))) 246 "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs"))))
253 (build-system python-build-system) 247 (build-system python-build-system)
254 (propagated-inputs 248 (propagated-inputs
255 `(("python-future" ,python-future))) 249 (list python-future))
256 (home-page "https://github.com/gkovacs/lz-string-python") 250 (home-page "https://github.com/gkovacs/lz-string-python")
257 (synopsis "String compression") 251 (synopsis "String compression")
258 (description "Lz-string is a string compressor library for Python.") 252 (description "Lz-string is a string compressor library for Python.")
@@ -359,9 +353,9 @@ install: libbitshuffle.so
359 "0v3qayhqv7vyzydpydwcp51bqciw8p2ajddw68x5k8zppc0vx3yk")))) 353 "0v3qayhqv7vyzydpydwcp51bqciw8p2ajddw68x5k8zppc0vx3yk"))))
360 (build-system python-build-system) 354 (build-system python-build-system)
361 (propagated-inputs 355 (propagated-inputs
362 `(("python-more-itertools" ,python-more-itertools))) 356 (list python-more-itertools))
363 (native-inputs 357 (native-inputs
364 `(("python-setuptools-scm" ,python-setuptools-scm))) 358 (list python-setuptools-scm))
365 (home-page "https://github.com/jaraco/zipp") 359 (home-page "https://github.com/jaraco/zipp")
366 (synopsis 360 (synopsis
367 "Backport of pathlib-compatible object wrapper for zip files") 361 "Backport of pathlib-compatible object wrapper for zip files")
@@ -405,7 +399,7 @@ wrapper. It provides a backport of the @code{Path} object.")
405 (base32 "0by9z7nxnkzhmza075q6q91rs8lnpf91129k8ppv7kymbwshipjj")))) 399 (base32 "0by9z7nxnkzhmza075q6q91rs8lnpf91129k8ppv7kymbwshipjj"))))
406 (build-system python-build-system) 400 (build-system python-build-system)
407 (native-inputs 401 (native-inputs
408 `(("python-hypothesis" ,python-hypothesis))) 402 (list python-hypothesis))
409 (home-page "https://github.com/indygreg/python-zstandard") 403 (home-page "https://github.com/indygreg/python-zstandard")
410 (synopsis "Zstandard bindings for Python") 404 (synopsis "Zstandard bindings for Python")
411 (description "This project provides Python bindings for interfacing with 405 (description "This project provides Python bindings for interfacing with