From 7ceb839dc32a82384a9c8b1205957286554cf12e Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 25 Jun 2025 19:14:58 -0300 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e7bd8c5f39901a2ca82b0c37924c698c018d5225..da17500b6075fb75d8c28baa04766dd6d1ced50b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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