From 4bd075bd4856ebd22108b3e985a26a9d2cb2be15 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 18 Sep 2025 15:17:19 +0100 Subject: [PATCH] gnu: python-pixell: Update to 0.30.0. * gnu/packages/astronomy.scm (python-pixell): Update to 0.30.0. [arguments] : Add 'relax-requirements. [propagated-inputs]: Remove python-coveralls and python-cython. Change-Id: Ife73368e5de635dc76818a6c249039483557b6c3 --- gnu/packages/astronomy.scm | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 8250dc8304e34f8146894f4f0e7eb94deb1f4b4f..37ff2dcdbbc459fa60a6ff8b03e0608d3d5db126 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5857,14 +5857,26 @@ and the use of a modern programming language, techniques, and libraries (define-public python-pixell (package (name "python-pixell") - (version "0.29.0") + (version "0.30.0") (source (origin (method url-fetch) (uri (pypi-uri "pixell" version)) (sha256 - (base32 "17ivl01j2a6j6frzxdmzb4bdbs94n8rkipz2lh3zhhkx17djlbfh")))) + (base32 "0ncqqwvpg47yihlplzmhn8za8y7wab5k71n87nz8bcvzj8gnmpvw")))) (build-system pyproject-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + ;; XXX: To prevent sanity check faileur in dependent + ;; packages, Cython, Coveralls and Pytests are not required + ;; during runtime. + (lambda _ + (substitute* "pyproject.toml" + ((" 'cython',") "") + ((" 'coveralls>=1.5',") "") + ((" 'pytest>=4.6',") ""))))))) (native-inputs (list gfortran meson-python @@ -5874,8 +5886,6 @@ and the use of a modern programming language, techniques, and libraries python-pytest)) (propagated-inputs (list python-astropy - python-coveralls - python-cython ; check why it needs in installation python-dateutil python-ducc0 python-h5py