~ruther/guix-local

43857e4cf0c9db5a8a60eb7d693c7bbb0baafbe8 — Nicolas Graves 4 months ago 750104c
gnu: python-gipc: Update to 1.8.0.

* gnu/packages/python-xyz.scm (python-gipc): Update to 1.8.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-pytest, python-setuptools.  Remove unzip.
[description]: Improve style.

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

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +18 -14
@@ 27269,25 27269,29 @@ Glob2 currently based on the glob code from Python 3.3.1.")
(define-public python-gipc
  (package
    (name "python-gipc")
    (version "0.6.0")
    (version "1.8.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "gipc" version ".zip"))
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/jgehrcke/gipc")
              (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0pd9by719qh882hqs6xpby61sn1x5h98hms5p2p8yqnycrf1s0h2"))))
    (build-system python-build-system)
    (native-inputs
     (list unzip))
    (propagated-inputs
     (list python-gevent))
        (base32 "18w1fi3gh8i3kl58n6jpixzc2w42znxqhb3lj6hwn1641wq2hyrz"))))
    (build-system pyproject-build-system)
    (arguments
     ;; Some tests seem to require an older version of pytest.
     (list #:tests? #f))
    (native-inputs (list python-pytest python-setuptools))
    (propagated-inputs (list python-gevent))
    (home-page "https://gehrcke.de/gipc/")
    (synopsis "Child process management in the context of gevent")
    (description "Usage of Python's multiprocessing package in a
gevent-powered application may raise problems.  With @code{gipc},
process-based child processes can safely be created anywhere within a
gevent-powered application.")
    (description
     "Usage of Python's multiprocessing package in a gevent-powered
application may raise problems.  With @code{gipc}, process-based child
processes can safely be created anywhere within a gevent-powered
application.")
    (license license:expat)))

(define-public python-beautifultable