From 61a13d1a3d291d9f0fa60d3589cfa2695bde9d03 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 22 Dec 2025 17:17:36 +0100 Subject: [PATCH] gnu: python-serverfiles: Switch to pyproject. * gnu/packages/orange.scm (python-serverfiles): [build-system]: Switch to pyproject-build-system. [arguments]<#:test-backend>: Set it. [native-inputs]: Add python-setuptools. Change-Id: I3dbbf628c9940c31a57c5d796dc6a4897575073b Signed-off-by: Sharlatan Hellseher --- gnu/packages/orange.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/orange.scm b/gnu/packages/orange.scm index 3b741e7dbba720629dfa188eadb534f08c4a69fd..0d31c204e20b3fe9737d7a7c746e77534177901c 100644 --- a/gnu/packages/orange.scm +++ b/gnu/packages/orange.scm @@ -258,9 +258,10 @@ data analysis, data mining and data visualization.") (uri (pypi-uri "serverfiles" version)) (sha256 (base32 "1qgbzgnaxj4wsp2rdas53qxsh0j7xpibq25w6lviwyaqwwrgq42y")))) - (build-system python-build-system) - (propagated-inputs - (list python-requests)) + (build-system pyproject-build-system) + (arguments (list #:test-backend #~'unittest)) + (native-inputs (list python-setuptools)) + (propagated-inputs (list python-requests)) (home-page "https://github.com/biolab/serverfiles") (synopsis "Utility to access files on a HTTP server and store them locally") (description