andreas pushed a commit to branch python-team
in repository guix.
commit fb86e67b2fea08583b5aad4155c42f8317c24e0d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Nov 4 20:51:44 2024 +0000
gnu: python-kiwisolver: Update to 1.4.6.
* gnu/packages/maths.scm (python-kiwisolver): Update to 1.4.6.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Iafc09eb96ac72ee7094ead36e284994798d544a2
---
gnu/packages/maths.scm | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 62b4f63ac9..2d3317014f 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3874,16 +3874,22 @@ programming language.")
(define-public python-kiwisolver
(package
(name "python-kiwisolver")
- (version "1.4.5")
+ (version "1.4.6")
(source (origin
(method url-fetch)
(uri (pypi-uri "kiwisolver" version))
(sha256
(base32
- "1v6nc0z9dg4am0bibji9pijci9f15z68mwrlv91a28pvawx5czp5"))))
+ "1q77r6cl9m4vh8lsvmsm1ijh3r9aijdhmnc03yhnlpj407b2kniw"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-typing-extensions))
- (native-inputs (list python-cppy python-pytest python-setuptools-scm))
+ (native-inputs
+ (list python-cppy
+ python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (propagated-inputs
+ (list python-typing-extensions))
(home-page "https://github.com/nucleic/kiwi")
(synopsis "Fast implementation of the Cassowary constraint solver")
(description