diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-08 09:56:48 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-08 11:06:38 +0100 |
commit | 08fd08c6f262958f17820d235a5f08a21858056d (patch) | |
tree | 6e786a30bbcb0f3ded4753bbfce8651b95a5c146 | |
parent | a7984f741fa3286a9c88da443b5802849b397cc4 (diff) | |
download | guix-08fd08c6f262958f17820d235a5f08a21858056d.tar.gz guix-08fd08c6f262958f17820d235a5f08a21858056d.zip |
gnu: python-adjusttext: Update to 1.3.0.
* gnu/packages/python-xyz.scm (python-adjusttext): Update to 1.3.0.
[propagated-inputs]: Add python-scipy.
Change-Id: Icb97357eb003c8215ca030516a3b53be1e124076
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 87274cc495..dfae2d6d03 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1702,16 +1702,16 @@ using a dot syntax, for example: @code{dictionary['deeply.nested.key']}.") (define-public python-adjusttext (package (name "python-adjusttext") - (version "0.8") + (version "1.3.0") (source (origin (method url-fetch) - (uri (pypi-uri "adjustText" version)) + (uri (pypi-uri "adjusttext" version)) (sha256 (base32 - "05zf0xn7ab40dan213fwbp1z4rybih8dphf9mzb2ddmbafxq41mv")))) + "18dw5kqxan4m8kvw3w1lm0p69gj95i7rcgmcfs485x1s8pa5rdsa")))) (build-system pyproject-build-system) (arguments (list #:tests? #false)) ;there are none - (propagated-inputs (list python-matplotlib python-numpy)) + (propagated-inputs (list python-matplotlib python-numpy python-scipy)) (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/Phlya/adjustText") (synopsis "Adjust text position in matplotlib plots to minimize overlaps") |