summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-18 16:15:20 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 23:37:58 +0100
commit8ee3e63673680d77198db0abda8bb4c3ecfc15c8 (patch)
treed04885b3b38dbad0f519067c584708267a40d124 /gnu
parent0be5bb14d6bf359c663078bd637a92d35ba76509 (diff)
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>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm18
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e4fd7de544b..9164a22b647 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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