mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: python-helper: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-helper): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I1464f39be1794795b8e94744bb2060cff7242cec Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
4ddc8ea1c2
commit
0b0e6e48c8
1 changed files with 13 additions and 11 deletions
|
|
@ -31741,17 +31741,19 @@ older versions of Python and so are packaged here.")
|
|||
(package
|
||||
(name "python-helper")
|
||||
(version "2.5.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "helper" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1d2j64wgbggzv5rhvil10zndp2w78wa5np5w0psj122ws9qr9wsa"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
(list python-mock))
|
||||
(propagated-inputs
|
||||
(list python-logutils python-pyyaml))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/gmr/helper")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0zypjv8rncvrsgl200v7d3bn08gs48dwqvgamfqv71h07cj6zngp"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments (list #:test-backend #~'unittest))
|
||||
(native-inputs (list python-mock python-setuptools))
|
||||
(propagated-inputs (list python-logutils python-pyyaml))
|
||||
(home-page "https://github.com/gmr/helper")
|
||||
(synopsis "Library for writing configurable applications and daemons")
|
||||
(description
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue