guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 10c40b82728a9e07f00f2c86a68b88232548bc3e
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Nov 21 22:24:23 2025 +0100

    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 <[email protected]>
---
 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 2da3bab8ec..393aa8cf2f 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")

Reply via email to