rekado pushed a commit to branch wip-python-science
in repository guix.
commit 6b412d653b2bd4001996393d8bb591ccce8d0cd8
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Jan 8 19:46:13 2024 +0100
gnu: python-kiwisolver: Update to 1.4.5.
* gnu/packages/maths.scm (python-kiwisolver): Update to 1.4.5.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Add python-typing-extension.
[native-inputs]: Add python-cppy, python-pytest, and python-setuptools-scm.
Change-Id: Iea75440dc58fa342dcf4a2a381b6dcc17e71e618
---
gnu/packages/maths.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index adc7beb655..ada828cb3f 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2014-2022 Eric Bavier <[email protected]>
;;; Copyright © 2014 Federico Beffa <[email protected]>
;;; Copyright © 2014 Mathieu Lirzin <[email protected]>
-;;; Copyright © 2015–2023 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2015–2024 Ricardo Wurmus <[email protected]>
;;; Copyright © 2015 Sou Bunnbu <[email protected]>
;;; Copyright © 2015, 2018 Mark H Weaver <[email protected]>
;;; Copyright © 2015-2023 Efraim Flashner <[email protected]>
@@ -3636,14 +3636,16 @@ bindings to almost all functions of PETSc.")
(define-public python-kiwisolver
(package
(name "python-kiwisolver")
- (version "1.0.1")
+ (version "1.4.5")
(source (origin
(method url-fetch)
(uri (pypi-uri "kiwisolver" version))
(sha256
(base32
- "0y22ci86znwwwfhbmvbgdfnbi6lv5gv2xkdlxvjw7lml43ayafyf"))))
- (build-system python-build-system)
+ "1v6nc0z9dg4am0bibji9pijci9f15z68mwrlv91a28pvawx5czp5"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-typing-extensions))
+ (native-inputs (list python-cppy python-pytest python-setuptools-scm))
(home-page "https://github.com/nucleic/kiwi")
(synopsis "Fast implementation of the Cassowary constraint solver")
(description