1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-11 00:34:05 +02:00

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>
This commit is contained in:
Nicolas Graves
2025-10-18 16:15:20 +02:00
committed by Sharlatan Hellseher
parent 0be5bb14d6
commit 8ee3e63673
+11 -7
View File
@@ -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