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
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -7250,14 +7250,14 @@ (define-public python-pillow-simd
(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"))))