diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-25 19:10:36 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-26 00:42:00 -0300 |
| commit | 1fa89a6c76469f64b5c2611496fe2728f4132d9b (patch) | |
| tree | f119928fcbe54bd795da2721d88c8351650bad81 | |
| parent | efc99eaed995761658ce5a99f88a3f3a233caae3 (diff) | |
gnu: python-bitarray: Update to 3.4.3.
* gnu/packages/python-xyz.scm (python-bitarray): Update to 3.4.3.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I13ab21ecaba9807098981e91e203b59c756bd866
| -rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 97ad5dae64..e7bd8c5f39 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3835,14 +3835,14 @@ and a list of words that are easier to remember for humans (the (define-public python-bitarray (package (name "python-bitarray") - (version "3.3.1") + (version "3.4.3") (source (origin (method url-fetch) (uri (pypi-uri "bitarray" version)) (sha256 (base32 - "0ib35sxk46kw2adgikmy4vn9climr0dz99pqf2mia2idcyd232cc")))) - (build-system python-build-system) + "1w32bybj7qx99pkwyhb4g9c1y5mp89kc838iq30swrkb12zv5pyx")))) + (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases @@ -3853,6 +3853,7 @@ and a list of words that are easier to remember for humans (the (with-directory-excursion "/tmp" (invoke "python" "-c" "import bitarray; bitarray.test()")))))))) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/ilanschnell/bitarray") (synopsis "Efficient arrays of booleans") (description "This package provides an object type which efficiently |
