summaryrefslogtreecommitdiff
path: root/gnu/packages/python-compression.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-07 09:37:59 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:19:05 +0000
commit7cd548517f02605f0b1ac8c586fa363ea1303041 (patch)
treeb89d489c718197fce59b24ffb1a4c129847e7dc1 /gnu/packages/python-compression.scm
parent98101729837efa32843d8e584213e0df81faf3bd (diff)
gnu: python-ewah-bool-utils: Update to 1.2.2.
* gnu/packages/python-compression.scm (python-ewah-bool-utils): Update to 1.2.2. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I95840551cde83d0b74898eccb14b38d50edbc842
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r--gnu/packages/python-compression.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index 1838d97a0dd..15eaae5bdc6 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -204,13 +204,13 @@ following algorithms are available:
204(define-public python-ewah-bool-utils 204(define-public python-ewah-bool-utils
205 (package 205 (package
206 (name "python-ewah-bool-utils") 206 (name "python-ewah-bool-utils")
207 (version "1.2.0") 207 (version "1.2.2")
208 (source 208 (source
209 (origin 209 (origin
210 (method url-fetch) 210 (method url-fetch)
211 (uri (pypi-uri "ewah_bool_utils" version)) 211 (uri (pypi-uri "ewah_bool_utils" version))
212 (sha256 212 (sha256
213 (base32 "1bff3cv5m4n5pwqz0q90dy42vpyrrhylnrkcd49g1dlf3fs6r0pp")))) 213 (base32 "1hvs1fvf3g7kq6hnzxyxfrwvmykw503cmxf1l3irs67gr931z47b"))))
214 (build-system pyproject-build-system) 214 (build-system pyproject-build-system)
215 (arguments 215 (arguments
216 (list 216 (list
@@ -220,7 +220,10 @@ following algorithms are available:
220 (lambda _ 220 (lambda _
221 (invoke "python" "setup.py" "build_ext" "--inplace")))))) 221 (invoke "python" "setup.py" "build_ext" "--inplace"))))))
222 (native-inputs 222 (native-inputs
223 (list python-cython python-pytest)) 223 (list python-cython
224 python-pytest
225 python-setuptools
226 python-wheel))
224 (propagated-inputs 227 (propagated-inputs
225 (list python-numpy)) 228 (list python-numpy))
226 (home-page "https://github.com/yt-project/ewah_bool_utils") 229 (home-page "https://github.com/yt-project/ewah_bool_utils")