From 8ee3e63673680d77198db0abda8bb4c3ecfc15c8 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 18 Oct 2025 16:15:20 +0200 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e4fd7de544bf96eba9ff8653f7a4387b8ece283e..9164a22b647d3b80b78e665eedcf1d60780df9f6 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