diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-11 10:07:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:42 +0100 |
commit | 6a2fb5fa5128e34fdc46a361f4dacc14620e3248 (patch) | |
tree | 9b8137b4d197fdd61567aac512b5f692779bc05e /gnu/packages/python-xyz.scm | |
parent | 355bdf406b4609f1bafe9d18f7d4a7cd0d3ac2a4 (diff) |
gnu: python-matplotx: Add missing inputs.
* gnu/packages/python-xyz.scm (python-matplotx)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I5b42c20e2b708d22738dafba74ec4fd641fb1e83
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7b3cfd24a5..7dc2930050 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10255,17 +10255,6 @@ three-way Venn diagrams in @code{matplotlib}.") (sha256 (base32 "1j301mr7ai2jmbm5mkva0jd99fzxhyq585pqzqfmrf5pil8j4q8i")))) (build-system pyproject-build-system) - (propagated-inputs - (list python-matplotlib - python-numpy - ;; optional dependencies - python-networkx - python-pypng - python-scipy)) - (native-inputs (list python-imageio - python-meshzoo - python-pytest - python-scikit-fem)) (arguments (list #:test-flags @@ -10273,6 +10262,19 @@ three-way Venn diagrams in @code{matplotlib}.") #~(list "--deselect" "tests/test_spy.py::test_cli" ;; XXX: unknown failure "--deselect" "tests/test_spy.py::test_png"))) + (propagated-inputs + (list python-matplotlib + python-numpy + ;; optional dependencies + python-networkx + python-pypng + python-scipy)) + (native-inputs (list python-imageio + python-meshzoo + python-pytest + python-scikit-fem + python-setuptools + python-wheel)) (home-page "https://github.com/nschloe/matplotx") (synopsis "Minimal matplotlib styles") (description |