~ruther/guix-local

f3401cd02ac60ce6d80461b91b93f3834949ba08 — Vinicius Monego 1 year, 1 day ago b6491e5
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
1 files changed, 5 insertions(+), 7 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +5 -7
@@ 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