mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: pydf: Update to 15-0.af38bb3.
* gnu/packages/disk.scm (pydf): Update to 15-0.af38bb3. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-setuptools. Change-Id: I16dbe1f9d0e74fb5bc64e35b69f1ff8b9b032f84 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
4753a946c3
commit
d313843515
1 changed files with 25 additions and 18 deletions
|
|
@ -970,24 +970,31 @@ reformatted. It can recover lost files from at least:
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public pydf
|
(define-public pydf
|
||||||
(package
|
(let ((commit "af38bb3b7aacbcc32271e6dafa8b8b0a77ffead8")
|
||||||
(name "pydf")
|
(revision "0"))
|
||||||
(version "12")
|
(package
|
||||||
(source
|
(name "pydf")
|
||||||
(origin
|
(version (git-version "15" revision commit))
|
||||||
(method url-fetch)
|
(source
|
||||||
(uri (pypi-uri "pydf" version))
|
(origin
|
||||||
(sha256
|
(method git-fetch)
|
||||||
(base32
|
(uri (git-reference
|
||||||
"0f8ly8xyp93i2hm9c0qjqd4y86nz73axw2f09z01mszwmg1sfivz"))))
|
(url "https://github.com/garabik/pydf")
|
||||||
(build-system python-build-system)
|
(commit commit)))
|
||||||
(home-page "http://kassiopeia.juls.savba.sk/~garabik/software/pydf/")
|
(file-name (git-file-name name version))
|
||||||
(synopsis "Colourised @command{df} clone")
|
(sha256
|
||||||
(description "All-singing, all-dancing, fully colourised @command{df} clone
|
(base32 "18ljigg8zm9pc3qg3alpyh3n4a4f1wcza4p36cchjn2vd4466jf4"))))
|
||||||
written in Python. It displays the amount of disk space available on the
|
(build-system pyproject-build-system)
|
||||||
mounted file systems, using different colours for different types of file
|
(arguments (list #:tests? #f)) ; No tests.
|
||||||
systems. Output format is completely customizable.")
|
(native-inputs (list python-setuptools))
|
||||||
(license license:public-domain)))
|
(home-page "http://kassiopeia.juls.savba.sk/~garabik/software/pydf/")
|
||||||
|
(synopsis "Colourised @command{df} clone")
|
||||||
|
(description
|
||||||
|
"All-singing, all-dancing, fully colourised @command{df} clone written
|
||||||
|
in Python. It displays the amount of disk space available on the mounted file
|
||||||
|
systems, using different colours for different types of file systems. Output
|
||||||
|
format is completely customizable.")
|
||||||
|
(license license:public-domain))))
|
||||||
|
|
||||||
(define-public f3
|
(define-public f3
|
||||||
(package
|
(package
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue