mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-incremental: Update to 24.7.2.
* gnu/packages/python-xyz.scm (python-incremental): Update to 24.7.2. [build-system]: Use pyproject-build-system. [arguments]: Add phase 'patch-build-system; disable tests. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. [propagated-inputs]: Add python-tomli. Change-Id: I6c49f2da746398d469f6fdc611fc08cfbe72a0e1
This commit is contained in:
parent
a2a628de68
commit
314ef4ccd8
1 changed files with 19 additions and 3 deletions
|
@ -25404,15 +25404,31 @@ manipulation and interaction with formal grammars.")
|
||||||
(define-public python-incremental
|
(define-public python-incremental
|
||||||
(package
|
(package
|
||||||
(name "python-incremental")
|
(name "python-incremental")
|
||||||
(version "22.10.0")
|
(version "24.7.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "incremental" version))
|
(uri (pypi-uri "incremental" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1l0b9k158n04cmcccdq9phdy20h08lpis922dy71iq7pw2sywbwi"))))
|
"1jb4skmy8awix345jk2pnar0sxmrf1gvn3kg9xyyivv0xr3iskzv"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; Tests require twisted, which needs this package.
|
||||||
|
#:tests? #false
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-build-system
|
||||||
|
(lambda _
|
||||||
|
(substitute* "pyproject.toml"
|
||||||
|
(("^backend-path.*") "")
|
||||||
|
(("^build-backend.*")
|
||||||
|
"build-backend = 'setuptools.build_meta'\n")))))))
|
||||||
|
(native-inputs (list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs (list python-tomli))
|
||||||
(home-page "https://github.com/hawkowl/incremental")
|
(home-page "https://github.com/hawkowl/incremental")
|
||||||
(synopsis "Library for versioning Python projects")
|
(synopsis "Library for versioning Python projects")
|
||||||
(description "Incremental is a small library that versions your Python
|
(description "Incremental is a small library that versions your Python
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue