diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-25 11:37:48 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:22:58 +0100 |
| commit | 8e7144b14b92f075e3076d8105e9308fd544fcf4 (patch) | |
| tree | 5f22abc91dc51e35f1925afd64b272f2fe3ab1d6 /gnu | |
| parent | 441fa7921ca4bfce16dcd5f7edc85e887ec9b6ec (diff) | |
gnu: python-emoji-for-gh-md-to-html: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-emoji-for-gh-md-to-html):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
Change-Id: I929e6fe0841332521fa3f0c6d9fdbd7d2f82efec
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 304519cff22..4494d53595d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16083,14 +16083,18 @@ addition to a bunch of aliases.") (define-public python-sarge (package (name "python-sarge") - (version "0.1.7.post1") ; post release only to correct errors in metadata + (version "0.1.7.post1") ;post release only to correct errors in metadata (source (origin - (method url-fetch) - (uri (pypi-uri "sarge" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/vsajip/sarge") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "0g9a53mfnp96877n1yq2jdk1mcv3xm0d93iisvgcn2prdsp45zv4")))) - (build-system python-build-system) + (base32 "0kn577lnaznr2hz1w1617l1agd21xs1fq2qv8kg2dy92qinl6gbd")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://docs.red-dove.com/sarge/") (synopsis "Subprocess wrapper with command pipeline functionality") (description "@code{sarge} is a wrapper for subprocess which provides |
