~ruther/guix-local

2793cb63025047fe2a9c7b3f05007475d4a1c6ab — Sharlatan Hellseher 7 months ago a41a9c3
gnu: python-pywal: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-pywal):[build-system]: Switch to
pyproject-build-system.
[native-inputs]: Add python-pytest and python-setuptools.

Change-Id: I1c461e7353edd99018c915b1a1bb0d5813471715
1 files changed, 5 insertions(+), 3 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +5 -3
@@ 13524,15 13524,17 @@ localized only in frequency instead of in time and frequency.")
       (file-name (git-file-name name version))
       (sha256
        (base32 "039m7dch479hlwddynacdrr0klz6a5bdly5swqbs94hfimficiyf"))))
    (build-system python-build-system)
    (build-system pyproject-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-before 'check 'fix-home-directory
           (lambda _
             ;; Tests fail with "Permission denied: '/homeless-shelter'".
             (setenv "HOME" "/tmp")
             #t)))))
             (setenv "HOME" "/tmp"))))))
    (native-inputs
     (list python-pytest
           python-setuptools))
    (inputs
     (list imagemagick))
    (home-page "https://github.com/dylanaraps/pywal")