me
/
guix
Archived
1
0
Fork 0

gnu: python-pillow-simd: Fix version.

* gnu/packages/python-xyz.scm (python-pillow-simd)[version]: Move "v" prefix
out of version string.
master
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
1 changed files with 2 additions and 2 deletions

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