summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-28 20:31:12 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:18 +0100
commit24d11767e61e2fae0d37236924ce6963b90ecdef (patch)
tree5008041cb05c060ed4a38d7496bc3bc8e80304a7 /gnu/packages
parente21b1f1e7b3969a4c27fe5656ebeda759ef51788 (diff)
gnu: python-pint: Update to 0.25.3.
* gnu/packages/python-science.scm (python-pint): Update to 0.25.3. [native-inputs]: Remove python-setuptools, python-setuptools-scm, and python-wheel; add python-hatch-vcs and python-hatchling.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-science.scm22
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index ce930c290bd..d1fe1e17b83 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2827,16 +2827,21 @@ particle information and extra goodies.")
2827(define-public python-pint 2827(define-public python-pint
2828 (package 2828 (package
2829 (name "python-pint") 2829 (name "python-pint")
2830 (version "0.24.4") 2830 (version "0.25.3")
2831 (source 2831 (source
2832 (origin 2832 (origin
2833 (method url-fetch) 2833 (method git-fetch)
2834 (uri (pypi-uri "pint" version)) 2834 (uri (git-reference
2835 (url "https://github.com/hgrecco/pint")
2836 (commit version)))
2837 (file-name (git-file-name name version))
2835 (sha256 2838 (sha256
2836 (base32 "100vp5jg2sqj5wxaflj1rqjv2pk4fd55l2h2sdn7m0vlnlwm89rm")))) 2839 (base32 "0ra25yfvjm5fpc47wm2dk8vicpdblvjjizbs0n1ak5d65mqinv4p"))))
2837 (build-system pyproject-build-system) 2840 (build-system pyproject-build-system)
2838 (arguments 2841 (arguments
2839 (list 2842 (list
2843 ;; tests: 2191 passed, 142 skipped, 11 xfailed, 9 warnings, 298 subtests
2844 ;; passed
2840 #:test-flags #~(list "--ignore=pint/testsuite/benchmarks") 2845 #:test-flags #~(list "--ignore=pint/testsuite/benchmarks")
2841 #:phases 2846 #:phases
2842 #~(modify-phases %standard-phases 2847 #~(modify-phases %standard-phases
@@ -2846,12 +2851,11 @@ particle information and extra goodies.")
2846 ;; '/homeless-shelter' 2851 ;; '/homeless-shelter'
2847 (setenv "HOME" "/tmp")))))) 2852 (setenv "HOME" "/tmp"))))))
2848 (native-inputs 2853 (native-inputs
2849 (list python-pytest 2854 (list python-hatch-vcs
2855 python-hatchling
2856 python-pytest
2850 python-pytest-mpl 2857 python-pytest-mpl
2851 python-pytest-subtests 2858 python-pytest-subtests))
2852 python-setuptools
2853 python-setuptools-scm
2854 python-wheel))
2855 (propagated-inputs 2859 (propagated-inputs
2856 (list python-flexcache 2860 (list python-flexcache
2857 python-flexparser 2861 python-flexparser