summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorLars Bilke <lars.bilke@ufz.de>2025-03-14 08:52:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-03-16 20:29:23 +0000
commitf79b91c2e76d915b5148a632f4e95cec48638e12 (patch)
tree3a2501199cb110a77eaec543fcce412758207533 /gnu/packages/python-xyz.scm
parentd4bbd1a80ae1694a352cdb700775f717bc6cdb0b (diff)
gnu: python-pint: Update to 0.24.4
* gnu/packages/python-xyz.scm (python-pint): Update to 0.24.4. [source] <uri>: Adjust it as the archive name has been changed in PyPI. [propagated-inputs]: Add python-flexcache and python-flexparser. Change-Id: I76752863dc6d62dd988979003b3fe56d8eeb3c8e Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bb951f339b..d7661ead8d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2155,13 +2155,12 @@ Markdown. All extensions are found under the module namespace of pymdownx.")
(define-public python-pint
(package
(name "python-pint")
- (version "0.23")
+ (version "0.24.4")
(source (origin
(method url-fetch)
- (uri (pypi-uri "Pint" version))
+ (uri (pypi-uri "pint" version))
(sha256
- (base32
- "1d69dqs0j907x4hgz2k8f3zjzhgs9zvlw2k0gi955g3dc28rnl71"))))
+ (base32 "100vp5jg2sqj5wxaflj1rqjv2pk4fd55l2h2sdn7m0vlnlwm89rm"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2181,8 +2180,8 @@ Markdown. All extensions are found under the module namespace of pymdownx.")
python-pytest-mpl python-pytest-subtests
python-setuptools python-setuptools-scm python-wheel))
(propagated-inputs
- (list python-typing-extensions
- python-uncertainties))
+ (list python-flexcache python-flexparser
+ python-platformdirs python-typing-extensions))
(home-page "https://github.com/hgrecco/pint")
(synopsis "Physical quantities module")
(description