diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-23 14:26:40 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-23 14:26:40 +0100 |
commit | 9a31942cabb5c73174aee96ecd873fcf89955a9d (patch) | |
tree | e3b436fd81591a4b42141f0f5c699884e922fcef /gnu | |
parent | 297a5b74c37fd11b4b73e353ae9ab1b7cb2ae7ac (diff) | |
download | guix-9a31942cabb5c73174aee96ecd873fcf89955a9d.tar.gz guix-9a31942cabb5c73174aee96ecd873fcf89955a9d.zip |
gnu: python-pillow-simd: Fix version.
* gnu/packages/python-xyz.scm (python-pillow-simd)[version]: Move "v" prefix
out of version string.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 997b809b65..2b6051265f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7250,14 +7250,14 @@ a general image processing tool.") (package (inherit python-pillow) (name "python-pillow-simd") - (version "v9.0.0.post1") + (version "9.0.0.post1") ;; The PyPI tarball does not include test files. (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/uploadcare/pillow-simd") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1dnvsln451aw3qy2cxg2ndd5mcanf5nrhxw9l7mcam730635hdm9")))) |