diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-18 02:03:57 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-18 02:04:14 +0000 |
commit | 0a5b060be1e8966abc45e4782df83447510a90b4 (patch) | |
tree | d9990f7ee55aee171541f48eda3938d184cfa5b4 | |
parent | 5dcf03259a3e9aad579b8425b6e63bdd8d811029 (diff) | |
download | guix-0a5b060be1e8966abc45e4782df83447510a90b4.tar.gz guix-0a5b060be1e8966abc45e4782df83447510a90b4.zip |
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
-rw-r--r-- | gnu/packages/disk.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 00674016a4..fd9cb8a45e 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -113,6 +113,7 @@ #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix build-system trivial) #:use-module (guix build-system scons) #:use-module (guix download) @@ -873,7 +874,7 @@ a card with a smaller capacity than stated.") (define-public python-pyparted (package (name "python-pyparted") - (version "3.12.0") + (version "3.13.0") (source (origin (method git-fetch) @@ -882,12 +883,14 @@ a card with a smaller capacity than stated.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0jxc1i1g3lz32wvqvdbb9ng2ypin783004kjnp0pghiz813lpw1d")))) - (build-system python-build-system) + (base32 "09gjp60sr8l0v41anmdfnh9lizfz1mbb7mxvqq73s30vn4504982")))) + (build-system pyproject-build-system) (native-inputs - (list e2fsprogs pkg-config)) - (propagated-inputs - (list python-six)) + (list e2fsprogs + pkg-config + python-pytest + python-setuptools + python-wheel)) (inputs (list parted)) (home-page "https://github.com/dcantrell/pyparted") |