guix_mirror_bot pushed a commit to branch master
in repository guix.

commit f3401cd02ac60ce6d80461b91b93f3834949ba08
Author: Vinicius Monego <[email protected]>
AuthorDate: Wed Jun 25 21:16:29 2025 -0300

    gnu: python-matplotlib-venn: Update to 1.1.2.
    
    * gnu/packages/python-xyz.scm (python-matplotlib-venn): Update to 1.1.2.
    [source]: Update URI.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Remove unzip. Add python-setuptools, python-wheel.
    
    Change-Id: Ia38830c3a3d8b977865fc3d5ea808f40e8b3e7aa
---
 gnu/packages/python-xyz.scm | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 936e1bf8cc..f30ccf69df 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11327,20 +11327,18 @@ Jupyter.")
 (define-public python-matplotlib-venn
   (package
     (name "python-matplotlib-venn")
-    (version "0.11.5")
+    (version "1.1.2")
     (source
      (origin
        (method url-fetch)
-       (uri (pypi-uri "matplotlib-venn" version ".zip"))
+       (uri (pypi-uri "matplotlib-venn" version))
        (sha256
-        (base32
-         "13w3i1wih0mij08hrgppzg0g9z50y54rc28l6gdi1r5w45l7l0dy"))))
-    (build-system python-build-system)
+        (base32 "1qrnxhi2rbz737fm9mprfr8ig7kk2r99cbzkw8nsddcv7sh0favg"))))
+    (build-system pyproject-build-system)
     (arguments '(#:tests? #f)) ; tests are not included
+    (native-inputs (list python-setuptools python-wheel))
     (propagated-inputs
      (list python-matplotlib python-numpy python-scipy))
-    (native-inputs
-     (list unzip))
     (home-page "https://github.com/konstantint/matplotlib-venn";)
     (synopsis "Plot area-proportional Venn diagrams")
     (description

Reply via email to