1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-pillow-simd: Fix version.

* gnu/packages/python-xyz.scm (python-pillow-simd)[version]: Move "v" prefix
out of version string.
This commit is contained in:
Nicolas Goaziou
2022-03-23 14:26:40 +01:00
parent 297a5b74c3
commit 9a31942cab

View File

@@ -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"))))