~ruther/guix-local

8ee3e63673680d77198db0abda8bb4c3ecfc15c8 — Nicolas Graves 5 months ago 0be5bb1
gnu: python-crashtest: Update to 0.4.1.

* gnu/packages/python-xyz.scm (python-crashtest): Update to 0.4.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-poetry-core, python-pytest.

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

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -7
@@ 16975,14 16975,18 @@ checksums.  It implement more than a hundred checksum routines.")
(define-public python-crashtest
  (package
    (name "python-crashtest")
    (version "0.3.1")
    (version "0.4.1")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "crashtest" version))
        (sha256
          (base32 "1p9p7mn8x2j9psc4jxab98897v4i9s4fliyfw8rp8v4bx1n7pjj2"))))
    (build-system python-build-system)
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/sdispater/crashtest")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "180xrr1iw1614z7yrrnsigy0211q9985f9pbzjsj6rvrs6w7fm2d"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-poetry-core python-pytest))
    (home-page "https://github.com/sdispater/crashtest")
    (synopsis "Manage Python errors with ease")
    (description