summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-07 10:07:38 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:19:05 +0000
commit8f178be63f415ec0bfa9716133f27b55091cea21 (patch)
tree4cb5e9837310d172f6270da207a5f162339db523 /gnu/packages
parent973f8031224fde2ebbde1296b28c4fe4c8ba94ed (diff)
gnu: python-unyt: Adjust inputs.
* gnu/packages/python-science.scm (python-unyt): Shift the order of native and propagated inuts, add missing. [native-inputs]: Add python-setuptools-scm. Change-Id: Ibb1606be89743ac7d90fcafeaa75eae7ccfd756c
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-science.scm14
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 7b9d0cd7f6f..63f11d9ca7e 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2178,18 +2178,20 @@ annotations on an existing boxplots and barplots generated by seaborn.")
2178 (sha256 2178 (sha256
2179 (base32 "00900bw24rxgcgwgxp9xlx0l5im96r1n5hn0r3mxvbdgc3lyyq48")))) 2179 (base32 "00900bw24rxgcgwgxp9xlx0l5im96r1n5hn0r3mxvbdgc3lyyq48"))))
2180 (build-system pyproject-build-system) 2180 (build-system pyproject-build-system)
2181 ;; Astropy is an optional import, but we do not include it as it creates a
2182 ;; module cycle: astronomy->python-science->astronomy.
2183 (propagated-inputs (list python-h5py ; optional import
2184 python-matplotlib ; optional import
2185 python-numpy
2186 python-sympy))
2187 ;; Pint is optional, but we do not propagate it due to its size. 2181 ;; Pint is optional, but we do not propagate it due to its size.
2188 (native-inputs 2182 (native-inputs
2189 (list python-pint 2183 (list python-pint
2190 python-pytest 2184 python-pytest
2191 python-setuptools 2185 python-setuptools
2186 python-setuptools-scm
2192 python-wheel)) 2187 python-wheel))
2188 ;; Astropy is an optional import, but we do not include it as it creates a
2189 ;; module cycle: astronomy->python-science->astronomy.
2190 (propagated-inputs
2191 (list python-h5py ; optional import
2192 python-matplotlib ; optional import
2193 python-numpy
2194 python-sympy))
2193 (home-page "https://unyt.readthedocs.io") 2195 (home-page "https://unyt.readthedocs.io")
2194 (synopsis "Library for working with data that has physical units") 2196 (synopsis "Library for working with data that has physical units")
2195 (description 2197 (description