mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: python-seaborn: Update to 0.11.2.
* gnu/packages/python-xyz.scm (python-seaborn): Update to 0.11.2.
This commit is contained in:
parent
6e82d2fa0d
commit
3ce963254b
1 changed files with 31 additions and 40 deletions
|
@ -10349,48 +10349,39 @@ (define-public python-seaborn
|
|||
(package
|
||||
(name "python-seaborn")
|
||||
(version "0.11.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "seaborn" version))
|
||||
(sha256
|
||||
(base32 "1xpl3zb945sihsiwm9q1yyx84sakk1phcg0fprj6i0j0dllfjifg"))
|
||||
(patches (search-patches "python-seaborn-kde-test.patch"
|
||||
"python-seaborn-2690.patch"))))
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "seaborn" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1xpl3zb945sihsiwm9q1yyx84sakk1phcg0fprj6i0j0dllfjifg"))
|
||||
(patches (search-patches "python-seaborn-kde-test.patch"
|
||||
"python-seaborn-2690.patch"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-more-tests
|
||||
(lambda _
|
||||
(substitute* "seaborn/tests/test_distributions.py"
|
||||
(("get_contour_color\\(ax\\.collections\\[0\\]\\)")
|
||||
"get_contour_color(ax.collections[0])")
|
||||
(("c\\.get_color\\(\\)") "get_contour_color(c)")
|
||||
|
||||
;; These three are borked and have been fixed upstream, but
|
||||
;; there's no simple patch we could apply here, so we just
|
||||
;; disable them.
|
||||
(("def test_hue_ignores_cmap")
|
||||
"def skip_test_hue_ignores_cmap")
|
||||
(("def test_fill_artists")
|
||||
"def skip_test_fill_artists")
|
||||
(("def test_with_rug")
|
||||
"def skip_test_with_rug"))))
|
||||
(add-before 'check 'start-xserver
|
||||
(lambda _
|
||||
;; There must be a running X server and make check doesn't
|
||||
;; start one. Therefore we must do it.
|
||||
(system "Xvfb :1 &")
|
||||
(setenv "DISPLAY" ":1")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest" "seaborn")))))))
|
||||
(propagated-inputs
|
||||
(list python-pandas python-matplotlib python-numpy python-scipy))
|
||||
(native-inputs
|
||||
(list python-pytest xorg-server-for-tests))
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-more-tests
|
||||
(lambda _
|
||||
(substitute* "seaborn/tests/test_distributions.py"
|
||||
(("get_contour_color\\(ax\\.collections\\[0\\]\\)")
|
||||
"get_contour_color(ax.collections[0])")
|
||||
(("c\\.get_color\\(\\)") "get_contour_color(c)")
|
||||
(("def test_hue_ignores_cmap")
|
||||
"def skip_test_hue_ignores_cmap")
|
||||
(("def test_fill_artists")
|
||||
"def skip_test_fill_artists")
|
||||
(("def test_with_rug") "def skip_test_with_rug"))))
|
||||
(add-before 'check 'start-xserver
|
||||
(lambda _
|
||||
(system "Xvfb :1 &")
|
||||
(setenv "DISPLAY" ":1")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest" "seaborn")))))))
|
||||
(propagated-inputs (list python-pandas python-matplotlib python-numpy
|
||||
python-scipy))
|
||||
(native-inputs (list python-pytest xorg-server-for-tests))
|
||||
(home-page "https://seaborn.pydata.org/")
|
||||
(synopsis "Statistical data visualization")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue