guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 845af4fc92032a102e5704b2230f4f89f64a3e0f
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Sep 14 15:05:38 2025 +0300
gnu: python-sip: Update to 6.12.0.
* gnu/packages/qt.scm (python-sip): Update to 6.12.0.
[propagated-inputs]: Remove python-setuptools; add
python-setuptools-next and python-tomli.
[native-inputs]: Remove python-setuptools; add python-setuptools-next.
Change-Id: Id8771fdc3ec45e66e3b93672617b2b49e5e34891
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/qt.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 5cdabd25f6..22fa1abc88 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2013, 2014, 2015, 2023 Andreas Enge <[email protected]>
;;; Copyright © 2015, 2025 宋文武 <[email protected]>
;;; Copyright © 2015, 2018, 2019, 2020, 2021, 2023 Ludovic Courtès
<[email protected]>
-;;; Copyright © 2015-2019, 2024 Efraim Flashner <[email protected]>
+;;; Copyright © 2015-2019, 2024, 2025 Efraim Flashner <[email protected]>
;;; Copyright © 2016, 2017 Nikita <[email protected]>
;;; Copyright © 2016 Thomas Danckaert <[email protected]>
;;; Copyright © 2017, 2018, 2019, 2023 Ricardo Wurmus <[email protected]>
@@ -4305,7 +4305,7 @@ Python.")
(define-public python-sip
(package
(name "python-sip")
- (version "6.10.0")
+ (version "6.12.0")
(source
(origin
(method url-fetch)
@@ -4315,7 +4315,7 @@ Python.")
"/sip-" version ".tar.gz")))
(sha256
(base32
- "176jylhzs2ci2r9f3l75k9dpwhp1dn0qv2cy9phdp62cgmlia1gs"))
+ "1il938crjap0f05773mk70fjp91b1fbn76hi64r4j5akz2afsg08"))
(modules '((guix build utils)))
(snippet
;; Relax setuptools dependency
@@ -4326,9 +4326,9 @@ Python.")
(arguments
(list #:tests? #f)) ; No test system found.
(native-inputs
- (list python-setuptools python-setuptools-scm-next python-wheel))
+ (list python-setuptools-next python-setuptools-scm-next python-wheel))
(propagated-inputs
- (list python-packaging python-setuptools))
+ (list python-packaging python-setuptools-next python-tomli))
(home-page "https://www.riverbankcomputing.com/software/sip/intro")
(synopsis "Python binding creator for C and C++ libraries")
(description