From f3401cd02ac60ce6d80461b91b93f3834949ba08 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 25 Jun 2025 21:16:29 -0300 Subject: [PATCH] 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 936e1bf8cc6795b975bf770dcf372f84ba8a7620..f30ccf69df53fb65389e00f44695a989f79e66c3 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