~ruther/guix-local

27aec9f5942a827d2a0cd696efb18ea29326cf5a — Nicolas Graves 4 months ago b52ae8b
gnu: python-easyprocess: Update to 1.1.

* gnu/packages/python-xyz.scm (python-easyprocess): Update to 1.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.

Change-Id: Idb3343315ac143f447530622811cef45f90ca227
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 10 insertions(+), 6 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +10 -6
@@ 22699,17 22699,21 @@ etc.")
(define-public python-easyprocess
  (package
    (name "python-easyprocess")
    (version "0.3")
    (version "1.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "EasyProcess" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/ponty/easyprocess")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v"))))
    (build-system python-build-system)
        (base32 "1dysr0z2mijhxl4z86wxf4w94sszdm4i2w3id0a6qwyid6xqjksp"))))
    (build-system pyproject-build-system)
    (arguments
     ;; Tests require pyvirtualdisplay, which requires this package.
     `(#:tests? #f))
     (list #:tests? #f))
    (native-inputs (list python-setuptools))
    (home-page "https://github.com/ponty/easyprocess")
    (synopsis "Python subprocess interface")
    (description