From 222deca6d69040c485420f31e9917cc46af25292 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 18 Oct 2025 12:47:03 +0200 Subject: [PATCH] gnu: python-py-tes: Switch to pyproject. * gnu/packages/python-xyz.scm (python-py-tes): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest, python-requests-mock, python-setuptools. Change-Id: If6494b5c2a78fe31fa32517c2d27502c49294b62 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ac59c49b9734028f1ce648bad53b6b80d72874fb..d31cc5722dcf3a1fcba485fe9f3ed11c97ffec9e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15625,11 +15625,16 @@ language, in Python.") (version "0.4.2") (source (origin - (method url-fetch) - (uri (pypi-uri "py-tes" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ohsu-comp-bio/py-tes") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "0b272y392v0mnq0f3sm5kgcx8fn4qwfbym89hhvqxz3xkganr4pn")))) - (build-system python-build-system) + (base32 "0nacmw7whmbfqa6y728l6f646wpgaanfa0v4p5mggag2044v55qx")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-requests-mock python-setuptools)) (propagated-inputs (list python-attrs python-dateutil python-future python-requests)) (home-page "https://github.com/ohsu-comp-bio/py-tes")