diff options
| author | Charles Roelli <charles@aurox.ch> | 2026-05-06 10:54:31 +0200 |
|---|---|---|
| committer | Charles Roelli <charles@aurox.ch> | 2026-05-21 16:00:47 +0200 |
| commit | cba751e3760cf0ab3b77d61c0c33b113113b159a (patch) | |
| tree | a9b024f321cef5fdc449dd0cbabbc6ca779c0663 | |
| parent | 4f47e4ee9ba783839607b9c7889fec07abb82d68 (diff) | |
gnu: python-readme-renderer: Update to latest version from Git.
* gnu/packages/python-xyz.scm (python-readme-renderer): Update to latest
version from Git, commit 4ad4c701f2a17ca62f040e94d73c2eb08af320e9.
Change-Id: I5e95886ec5314132752551830aee0da841cafdf2
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fa015a1fb9..f4d256af21 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30960,14 +30960,20 @@ positioning, and keyboard input.") (define-public python-readme-renderer (package (name "python-readme-renderer") - (version "44.0") + (properties '((commit . "e603eb17fcabd6bd20706d278fc24a7e9a663190") + (revision . "0"))) + (version (git-version "44.0" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin - (method url-fetch) - (uri (pypi-uri "readme_renderer" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/pypa/readme_renderer") + (commit (assoc-ref properties 'commit)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1qfiqm3w1ydpbipns5nifa7h4wraxd72nh7imif819mzmd7064l7")))) + (base32 "15w3lzgg8gcq22saqy2cpnv3hvkrixhyn57fcg1p1bm2njh1hr61")))) (build-system pyproject-build-system) (arguments (list |
