From 5b983cd239a7e7ca441fc50cabdda786755e6583 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 22 Jun 2025 11:59:09 -0300 Subject: [PATCH] gnu: python-baycomp: Update to 1.0.3. * gnu/packages/python-science.scm (python-baycomp): Update to 1.0.3. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools, python-wheel. Change-Id: I2249fc981a91ebc175a5e0ff221bb6243126fb6f --- gnu/packages/python-science.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 758812cc86c..51117e9dd80 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -2697,14 +2697,16 @@ them.") (define-public python-baycomp (package (name "python-baycomp") - (version "1.0.2") + (version "1.0.3") (source (origin (method url-fetch) (uri (pypi-uri "baycomp" version)) (sha256 - (base32 "1c1354a7b3g8slychjgyjxqdm8z40z9kviyl9n4g9kfpdg0p4d64")))) - (build-system python-build-system) + (base32 "1v6s4mfr6xzjbv9a2v89hywm6fbv5nii0qczvcfjanvdn7bmmcij")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-setuptools python-wheel)) (propagated-inputs (list python-matplotlib python-numpy python-scipy)) (home-page "https://github.com/janezd/baycomp")