guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 93662453d90872413aa798a114537904f37477e3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 14 21:34:07 2026 +0100
gnu: python-kiwisolver: Update to 1.5.0
* gnu/packages/maths.scm (python-kiwisolver): Update to 1.5.0.
[source]: Switch to git-fetch.
[propagated-inputs]: Remove python-typing-extensions.
[native-inputs]: Remove python-wheel.
Change-Id: I46786a0a240d95e074406a6ce2ae6f50b46c383a
---
gnu/packages/maths.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 8a96f0b4b8..82137d3503 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4615,22 +4615,22 @@ radio interferometry data.")
(define-public python-kiwisolver
(package
(name "python-kiwisolver")
- (version "1.4.6")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "kiwisolver" version))
- (sha256
- (base32
- "1q77r6cl9m4vh8lsvmsm1ijh3r9aijdhmnc03yhnlpj407b2kniw"))))
+ (version "1.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nucleic/kiwi")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "18fxn3nvc6917mkm0as7088m794fqdp8rlk4qgypva9fir1br1r6"))))
(build-system pyproject-build-system)
(native-inputs
(list python-cppy
python-pytest
python-setuptools
- python-setuptools-scm
- python-wheel))
- (propagated-inputs
- (list python-typing-extensions))
+ python-setuptools-scm))
(home-page "https://github.com/nucleic/kiwi")
(synopsis "Fast implementation of the Cassowary constraint solver")
(description