mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: termdown: Switch to pyproject.
* gnu/packages/time.scm (termdown): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-pytest. Remove python-wheel. Change-Id: I0ce2fbccaf6d87c069325372621edb73c960452f Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
2d1199c815
commit
cb3853ae4a
1 changed files with 9 additions and 10 deletions
|
|
@ -76,18 +76,17 @@
|
|||
(version "1.18.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "termdown" version))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/trehn/termdown")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07nxsqpwnpr9jkvif2ngjlcq05z0ldnmqxd15d1l593lzmxdyrci"))))
|
||||
(base32 "15i7ilwzwdj831bcd1gjnirydcdbr1b10d7jw5syjv0xwqq3yy8y"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-setuptools python-wheel))
|
||||
(propagated-inputs
|
||||
(list python-click
|
||||
python-pyfiglet
|
||||
python-dateutil))
|
||||
(arguments (list #:tests? #f)) ; No tests.
|
||||
(native-inputs (list python-pytest python-setuptools))
|
||||
(propagated-inputs (list python-click python-pyfiglet python-dateutil))
|
||||
(home-page "https://github.com/trehn/termdown")
|
||||
(synopsis "Countdown timer for your terminal")
|
||||
(description
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue