summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-10 00:01:16 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-30 16:09:30 +0000
commitfa772b10a74fb89c7f5d1756d73713d107cb16da (patch)
treea288a560a3aafc5bed715d13f3dca3a03325d088 /gnu/packages/python-xyz.scm
parent7d7d7d1a61a3c3cf6706a7bb8423e1dff40e825c (diff)
gnu: python-rellu: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-rellu): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. [description]: Run guix style. Change-Id: I92085ad6c97d702b01ab566ca78ca02ea391e193 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm25
1 files changed, 14 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7657d220da8..0363bdb15c2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9199,20 +9199,23 @@ using version 3 of the GitHub application programming interface (API).")
(version "0.7")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "rellu" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/robotframework/rellu")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1w0arpj1sm7vh29nrbnca4pnp8sx42l07r17inwqcjjf9bhng66x"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-invoke python-pygithub))
+ (base32 "1vbzkn4yfmc3dypgkw47fyd6n26ib7na1azrgjrvwc0vdf0qjyrw"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
+ (propagated-inputs (list python-invoke python-pygithub))
(home-page "https://github.com/robotframework/rellu")
(synopsis "Utilities to create PyPI releases")
- (description "This collection of utilities contains tooling and templates
-to assist in creating releases on GitHub and publishing them on PyPI. It is
-designed to be used by Robot Framework and tools and libraries in its
-ecosystem, but can naturally be used also by other projects.")
+ (description
+ "This collection of utilities contains tooling and templates to assist in
+creating releases on GitHub and publishing them on PyPI. It is designed to be
+used by Robot Framework and tools and libraries in its ecosystem, but can
+naturally be used also by other projects.")
(license license:asl2.0)))
(define-public python-robotframework