mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: python-pypng: Update to 0.20220715.0.
* gnu/packages/python-xyz.scm (python-pypng): Update to 0.20220715.0. [build-system]: Use pyproject-build-system. [arguments]: Add 'pre-check phase. [native-inputs]: Add python-pytest. Change-Id: Ic47c653f94a688048383eba216f01d7987625680
This commit is contained in:
parent
e2c76bdd83
commit
2057f778a4
1 changed files with 13 additions and 3 deletions
|
@ -28937,14 +28937,24 @@ (define-public python-titlecase
|
|||
(define-public python-pypng
|
||||
(package
|
||||
(name "python-pypng")
|
||||
(version "0.0.20")
|
||||
(version "0.20220715.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pypng" version))
|
||||
(sha256
|
||||
(base32 "02qpa22ls41vwsrzw9r9qhj1nhq05p03hb5473pay6y980s86chh"))))
|
||||
(build-system python-build-system)
|
||||
(base32 "1hg24zja235bkbny82hx7sy7qlzfbabxph2lvqaq61vgm4xl773k"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
(setenv "PYTHONPATH"
|
||||
(string-append (getcwd) "/code:"
|
||||
(getenv "GUIX_PYTHONPATH"))))))))
|
||||
(native-inputs (list python-pytest))
|
||||
(home-page "https://github.com/drj11/pypng")
|
||||
(synopsis "Pure Python PNG image encoder/decoder")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue