summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-17 18:51:09 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-28 22:07:06 +0000
commit33c88a87e76e6d67f10c651e0816c923ee92875a (patch)
tree4b38926003c6d5fda0c0930af0aee487b1dabbcf /gnu
parentab7a195daf97c75a59ad99c49439bc205fca5069 (diff)
gnu: python-halotools: Update to 0.9.4.
* gnu/packages/astronomy.scm (python-halotools): Update to 0.9.4. [phases]: Use default {check}. {remove-local-source}: New phase. [native-inputs]: Remove python-wheel. Change-Id: Ic72e83a86e3fd4547023da56dd22b7ad0bd132f2
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/astronomy.scm17
1 files changed, 6 insertions, 11 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 8ef87824650..34deea3e549 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5607,33 +5607,28 @@ ConsistentTrees).")
(define-public python-halotools
(package
(name "python-halotools")
- (version "0.9.3")
+ (version "0.9.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "halotools" version))
(sha256
- (base32 "004nqlyiv6gyzmjk840a1hl3j4sgi5xwbfibankwi7281gq4hx3d"))))
+ (base32 "1zwa2pbfk944kf415s3bdyq4cql9alicls56dw82gvwd8mkg9567"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- ;; Use built library for tests.
- (replace 'check
- (lambda* (#:key tests? test-flags #:allow-other-keys)
- (when tests?
- (with-directory-excursion #$output
- (setenv "HOME" "/tmp")
- (apply invoke "pytest" "-vv" test-flags))))))))
+ (add-before 'check 'remove-local-source
+ (lambda _
+ (delete-file-recursively "halotools"))))))
(native-inputs
(list python-cython
python-extension-helpers
python-pytest
python-pytest-astropy
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(propagated-inputs
(list python-astropy
python-beautifulsoup4