diff options
author | Evgeny Pisemsky <mail@pisemsky.site> | 2025-02-16 07:53:48 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-17 15:25:17 +0000 |
commit | 7eaf64acddc7f1ae0738e7779312c2abc6fbfd38 (patch) | |
tree | ff8b461f18284eba324a809acee9ebb54a1c83fb /gnu/packages/python-xyz.scm | |
parent | 971861b4d04fe16906bb0eb2abf2665decd8dd38 (diff) |
gnu: python-awesomeversion: Set version.
* gnu/packages/python-xyz.scm (python-awesomeversion): Set version.
[source]: Set actual version in pyproject.toml file.
Change-Id: Ib0625d3094989d65f0031c002ae7ef3f531c0b56
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index dab05f8d27..cf6283ad4e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -445,7 +445,11 @@ loop.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1kvzhhd2ah0sadlsp5xs3qbiknixq4xwhk3yb6kmhcdl2zcbi4cn")))) + (base32 "1kvzhhd2ah0sadlsp5xs3qbiknixq4xwhk3yb6kmhcdl2zcbi4cn")) + (modules '((guix build utils))) + (snippet #~(substitute* "pyproject.toml" + (("version = \"0\"") + (format #f "version = \"~a\"" #$version)))))) (build-system pyproject-build-system) (native-inputs (list python-poetry-core |