~ruther/guix-local

c647bd42a3f7e03b1eb2e4d196c79de3be237f3b — Ricardo Wurmus 2 years ago 82b7c30
gnu: python-seaborn: Update to 0.13.1.

* gnu/packages/python-xyz.scm (python-seaborn): Update to 0.13.1.
[propagated-inputs]: Add python-ipykernel, python-mypy, python-nbconvert,
python-numpydoc, python-pyyaml, and python-statsmodels.
[native-inputs]: Add python-flake8, python-pre-commit, python-pytest-cov, and
python-pytest-xdist; remove python-pypa-build.

Change-Id: Id1ed6cfaf7e0950e99c06900fd68fb1ab884bee0
1 files changed, 21 insertions(+), 5 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +21 -5
@@ 257,6 257,7 @@
  #:use-module (gnu packages shells)
  #:use-module (gnu packages sphinx)
  #:use-module (gnu packages ssh)
  #:use-module (gnu packages statistics)
  #:use-module (gnu packages swig)
  #:use-module (gnu packages tcl)
  #:use-module (gnu packages terminals)


@@ 12576,17 12577,32 @@ SVG, EPS, PNG and terminal output.")
(define-public python-seaborn
  (package
    (name "python-seaborn")
    (version "0.12.0")
    (version "0.13.1")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "seaborn" version))
              (sha256
               (base32
                "08vvnp4ps86857imxz2l5xi2vir5xdcdp3apq4badb4b5llifgw9"))))
                "0ycibcs6kvd3xi4zsxna81claqifyb9dn6z6jwc5x7lqqplnbbdz"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-pandas python-matplotlib python-numpy
                             python-scipy))
    (native-inputs (list python-flit-core python-pypa-build python-pytest))
    (propagated-inputs
     (list python-ipykernel
           python-matplotlib
           python-mypy
           python-nbconvert
           python-numpy
           python-numpydoc
           python-pandas
           python-pyyaml
           python-scipy
           python-statsmodels))
    (native-inputs
     (list python-flake8
           python-flit-core
           python-pre-commit
           python-pytest
           python-pytest-cov
           python-pytest-xdist))
    (home-page "https://seaborn.pydata.org/")
    (synopsis "Statistical data visualization")
    (description