sharlatan pushed a commit to branch python-team
in repository guix.
commit b3a82badb0b0341340120530579b1bda25813b1b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 10 14:38:08 2024 +0000
gnu: python-fast-histogram: Adjust inputs.
* gnu/packages/python-science.scm (python-fast-histogram)
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I53e2ce8019c421894e50138099539021a91f7c24
---
gnu/packages/python-science.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index ba578091f3..5de42fe045 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1700,11 +1700,14 @@ higher scores.")
(add-before 'check 'build-extensions
(lambda _
(invoke "python" "setup.py" "build_ext" "--inplace"))))))
- (propagated-inputs (list python-numpy))
(native-inputs
(list python-hypothesis
python-pytest
- python-setuptools-scm))
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (propagated-inputs
+ (list python-numpy))
(home-page "https://github.com/astrofrog/fast-histogram")
(synopsis "Fast simple 1D and 2D histograms")
(description