From e02d418f5ce3b20746cc20c65bf225bedb040e04 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 25 Jun 2025 21:18:45 -0300 Subject: [PATCH] gnu: python-matplotlib-venn: Enable tests. * gnu/packages/python-xyz.scm (python-matplotlib-venn)[arguments]: Remove '#:tests? #f'. [native-inputs]: Add python-pytest, python-shapely. Change-Id: If373b401be63913953ec4fb35539ec280904f657 --- gnu/packages/python-xyz.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f30ccf69df53fb65389e00f44695a989f79e66c3..bf66b80ef70c2926b789e17a1f8275be1f9dc9ca 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11335,8 +11335,10 @@ Jupyter.") (sha256 (base32 "1qrnxhi2rbz737fm9mprfr8ig7kk2r99cbzkw8nsddcv7sh0favg")))) (build-system pyproject-build-system) - (arguments '(#:tests? #f)) ; tests are not included - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-pytest + python-setuptools + python-shapely + python-wheel)) (propagated-inputs (list python-matplotlib python-numpy python-scipy)) (home-page "https://github.com/konstantint/matplotlib-venn")