mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pyparted: Update to 3.13.0.
* gnu/packages/disk.scm: Add pyproject. (python-pyparted): Update to 3.13.0, fix build. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: I1f5e7ff6e49ed4c868f7bb3033a92d27020f4114
This commit is contained in:
parent
5dcf03259a
commit
0a5b060be1
1 changed files with 9 additions and 6 deletions
|
@ -113,6 +113,7 @@
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
#:use-module (guix build-system pyproject)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system scons)
|
#:use-module (guix build-system scons)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -873,7 +874,7 @@ a card with a smaller capacity than stated.")
|
||||||
(define-public python-pyparted
|
(define-public python-pyparted
|
||||||
(package
|
(package
|
||||||
(name "python-pyparted")
|
(name "python-pyparted")
|
||||||
(version "3.12.0")
|
(version "3.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -882,12 +883,14 @@ a card with a smaller capacity than stated.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0jxc1i1g3lz32wvqvdbb9ng2ypin783004kjnp0pghiz813lpw1d"))))
|
(base32 "09gjp60sr8l0v41anmdfnh9lizfz1mbb7mxvqq73s30vn4504982"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list e2fsprogs pkg-config))
|
(list e2fsprogs
|
||||||
(propagated-inputs
|
pkg-config
|
||||||
(list python-six))
|
python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(inputs
|
(inputs
|
||||||
(list parted))
|
(list parted))
|
||||||
(home-page "https://github.com/dcantrell/pyparted")
|
(home-page "https://github.com/dcantrell/pyparted")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue