From 10c40b82728a9e07f00f2c86a68b88232548bc3e Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 22:24:23 +0100 Subject: [PATCH] gnu: python-ofxparse: Switch to pyproject. * gnu/packages/python-xyz.scm (python-ofxparse): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Replace python-nose by python-pynose. Change-Id: I2339e3d9e9bf7703b7a8e31e71dd0fde8f501bd9 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2da3bab8ecaef037eb6e120c9167f9abb6f14878..393aa8cf2f93931345a3aa5cbf5e4e85df6bfd2c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33538,18 +33538,9 @@ spreadsheet), CSV, TSV, XLS, XLSX (Microsoft Excel spreadsheet), and YAML.") (uri (pypi-uri "ofxparse" version)) (sha256 (base32 "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "nosetests" "-v"))))))) - (native-inputs - (list python-nose)) - (propagated-inputs - (list python-beautifulsoup4 python-lxml python-six)) + (build-system pyproject-build-system) + (native-inputs (list python-pynose python-setuptools)) + (propagated-inputs (list python-beautifulsoup4 python-lxml python-six)) (home-page "http://sites.google.com/site/ofxparse") (synopsis "Tools for working with the OFX (Open Financial Exchange) file format")