guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

15/18: gnu: python-libvirt: Update to 7.3.0.


From: guix-commits
Subject: 15/18: gnu: python-libvirt: Update to 7.3.0.
Date: Tue, 18 May 2021 10:38:44 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 8ac0d4fb4e7c3ce48ca0742a293288ca8cb05be4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue May 18 15:57:47 2021 +0200

    gnu: python-libvirt: Update to 7.3.0.
    
    * gnu/packages/virtualization.scm (python-libvirt): Update to 7.3.0.
    [arguments]: Remove obsolete 'patch-nosetests-path phase.
    Replace the default 'check phase.
    [native-inputs]: Switch from python-nose to python-pytest, like upstream
    has done.
---
 gnu/packages/virtualization.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index f2fcfeb..f12f862 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -1197,33 +1197,34 @@ three libraries:
 (define-public python-libvirt
   (package
     (name "python-libvirt")
-    (version "7.2.0")
+    (version "7.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://libvirt.org/sources/python/libvirt-python-";
                            version ".tar.gz"))
        (sha256
-        (base32 "1ryfimhf47s9k4n0gys233bh15l68fccs2bvj8bjwqjm9k2vmhy0"))))
+        (base32 "15pn8610ybf03xff3vbz3apz2ph42k2kh6k19r020l9nvc6jcv37"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-after 'unpack 'patch-nosetests-path
-           (lambda* (#:key inputs #:allow-other-keys)
-             (substitute* "setup.py"
-               (("\"/usr/bin/nosetests\"")
-                (string-append "\"" (which "nosetests") "\""))
-               (("self\\.spawn\\(\\[sys\\.executable, nose\\]\\)")
-                (format #f "self.spawn([\"~a\", nose])" (which "bash"))))
-             #t)))))
+         (replace 'check
+           (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+             (when tests?
+               ;; No reason to explicity invoke Python on a wrapped pytest.
+               (substitute* "setup.py"
+                 (("sys\\.executable, pytest") "pytest"))
+               (add-installed-pythonpath inputs outputs)
+               (setenv "LIBVIRT_API_COVERAGE" "whynot")
+               (invoke "python" "setup.py" "test")))))))
     (inputs
      `(("libvirt" ,libvirt)))
     (propagated-inputs
      `(("python-lxml" ,python-lxml)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-       ("python-nose" ,python-nose)))
+       ("python-pytest" ,python-pytest)))
     (home-page "https://libvirt.org";)
     (synopsis "Python bindings to libvirt")
     (description "This package provides Python bindings to the libvirt



reply via email to

[Prev in Thread] Current Thread [Next in Thread]