summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-19 16:50:10 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 17:24:44 +0000
commit692c95e305d8aac0ad56478fa60352078b9496cb (patch)
treea676846152abbb0e6efd727513af051bfaf1a59d /gnu/packages/python-check.scm
parentb9cf7580d208531db16fc47ba061eab5ed4ec4a8 (diff)
gnu: python-xunitparser: Switch to pyproject.
* gnu/packages/python-check.scm (python-xunitparser): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest and python-setuptools. [home-page]: Update URL. Change-Id: I3946378b153c54f9992df1b6562282c44fc65c1a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 5a8a37bddaa..c64e6ed0a0f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -4939,7 +4939,7 @@ unused.")
4939 (uri (pypi-uri "xunitparser" version)) 4939 (uri (pypi-uri "xunitparser" version))
4940 (sha256 4940 (sha256
4941 (base32 "00lapxi770mg7jkw16zy3a91hbdfz4a9h43ryczdsgd3z4cl6vyf")))) 4941 (base32 "00lapxi770mg7jkw16zy3a91hbdfz4a9h43ryczdsgd3z4cl6vyf"))))
4942 (build-system python-build-system) 4942 (build-system pyproject-build-system)
4943 (arguments 4943 (arguments
4944 `(#:phases 4944 `(#:phases
4945 (modify-phases %standard-phases 4945 (modify-phases %standard-phases
@@ -4949,7 +4949,9 @@ unused.")
4949 (substitute* "xunitparser.py" 4949 (substitute* "xunitparser.py"
4950 (("(^ +)self.stderr = None" m indent) 4950 (("(^ +)self.stderr = None" m indent)
4951 (string-append m "\n" indent "self._cleanup = False\n")))))))) 4951 (string-append m "\n" indent "self._cleanup = False\n"))))))))
4952 (home-page "http://git.p.engu.in/laurentb/xunitparser/") 4952 (native-inputs
4953 (list python-pytest python-setuptools))
4954 (home-page "https://gitlab.com/woob/xunitparser/")
4953 (synopsis "Read JUnit/XUnit XML files and map them to Python objects") 4955 (synopsis "Read JUnit/XUnit XML files and map them to Python objects")
4954 (description "xunitparser reads a JUnit/XUnit XML file and maps it to 4956 (description "xunitparser reads a JUnit/XUnit XML file and maps it to
4955Python objects. It tries to use the objects available in the standard 4957Python objects. It tries to use the objects available in the standard