gnu: python-boolean.py: Update to 5.0.

* gnu/packages/python-xyz.scm (python-boolean.py): Update to 5.0.
[source]: Fetch from PyPI.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.

Change-Id: Ieaa06d5512e96c12ed72842b250f9fd088470591
This commit is contained in:
Vinicius Monego 2025-06-25 19:14:58 -03:00
parent 1fa89a6c76
commit 7ceb839dc3
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -3881,18 +3881,15 @@ variable bit length encoding, you may find this module useful.")
(define-public python-boolean.py
(package
(name "python-boolean.py")
(version "4.0")
(version "5.0")
(source
(origin
;; There's no source tarball on PyPI.
(method git-fetch)
(uri (git-reference
(url "https://github.com/bastikr/boolean.py")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(method url-fetch)
(uri (pypi-uri "boolean_py" version))
(sha256
(base32 "1s4mrgqf1phwvda81dpnlkdadcbjgpl8mjvmc1yjlrp1c368v9lb"))))
(build-system python-build-system)
(base32 "15cd64x2m1cbcnjasw0m2977ab1n0mam8j96schkfxbrs2xc9jv0"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/bastikr/boolean.py")
(synopsis "Boolean algebra in one Python module")
(description