diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-03-27 21:07:57 +0800 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-04-03 18:05:13 -0400 |
commit | 2083a4e3101c705cbc050431dc4467c2cadd6b3f (patch) | |
tree | 0cff814051d5f9ea174046361df34d9dae2ec18e /gnu | |
parent | 0a2d7d4a84058935ad20e06e5ae0a1af6714280b (diff) | |
download | guix-2083a4e3101c705cbc050431dc4467c2cadd6b3f.tar.gz guix-2083a4e3101c705cbc050431dc4467c2cadd6b3f.zip |
gnu: python-sip: Update to 6.8.3.
* gnu/packages/qt.scm (python-sip): Update to 6.8.3.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Add python-tomli. Remove python-toml, python-ply.
Change-Id: I03fcec79a8124a545c9bb5fcfe0d0bb9de88434e
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 57106477a8..2cdd4e11e9 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -3797,7 +3797,7 @@ Python.") (define-public python-sip (package (name "python-sip") - (version "6.7.7") + (version "6.8.3") (source (origin (method url-fetch) @@ -3807,13 +3807,14 @@ Python.") "/sip-" version ".tar.gz"))) (sha256 (base32 - "1qm9q9lhfky5zvxxkssf4zdfv5k1zikji4hz80d48vdfm1pw1sfy")) + "0b3n237lbggz3b6bfmdsl1m4qgai7qyyj6fmvrmc695v32q4g1c8")) (patches (search-patches "python-sip-include-dirs.patch")))) - (build-system python-build-system) + (build-system pyproject-build-system) (native-inputs (list python-wrapper)) (propagated-inputs - (list python-toml python-packaging python-ply)) + (list python-tomli + python-packaging)) (home-page "https://www.riverbankcomputing.com/software/sip/intro") (synopsis "Python binding creator for C and C++ libraries") (description |