mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-sip: Update to 6.10.0.
* gnu/packages/qt.scm (python-sip): Update to 6.10.0. [source]: Add snippet to relax python-setuptools requirement. [native-inputs]: Remove python-wrapper. Add python-wheel. Sort inputs. [propagated-inputs]: Remove python-tomli, python-wheel. Sort inputs. * gnu/packages/backup.scm (vorta)[native-inputs]: Add python-setuptools, python-wheel. * gnu/packages/python-xyz.scm (python-echo)[native-inputs]: Add python-setuptools, python-wheel. * gnu/packages/patches/python-sip-include-dirs.patch: Refresh patch. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
ce93d3697d
commit
8088bd7604
4 changed files with 22 additions and 17 deletions
|
@ -4033,7 +4033,7 @@ Python.")
|
|||
(define-public python-sip
|
||||
(package
|
||||
(name "python-sip")
|
||||
(version "6.8.6")
|
||||
(version "6.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -4043,18 +4043,20 @@ Python.")
|
|||
"/sip-" version ".tar.gz")))
|
||||
(sha256
|
||||
(base32
|
||||
"0ykxq0607f2sdwbl5cxbp0y8pl14bsgzc9nhifpxbibfivj5kjbz"))
|
||||
"176jylhzs2ci2r9f3l75k9dpwhp1dn0qv2cy9phdp62cgmlia1gs"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Relax setuptools dependency
|
||||
#~(substitute* "pyproject.toml"
|
||||
(("\"setuptools>=.*\",") "\"setuptools\",")))
|
||||
(patches (search-patches "python-sip-include-dirs.patch"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f)) ; No test system found.
|
||||
(native-inputs
|
||||
(list python-wrapper python-setuptools python-setuptools-scm-next))
|
||||
(list python-setuptools python-setuptools-scm-next python-wheel))
|
||||
(propagated-inputs
|
||||
(list python-tomli
|
||||
python-packaging
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(list python-packaging python-setuptools))
|
||||
(home-page "https://www.riverbankcomputing.com/software/sip/intro")
|
||||
(synopsis "Python binding creator for C and C++ libraries")
|
||||
(description
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue