1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
flit-core,
matplotlib,
pytest-xdist,
pytestCheckHook,
numpy,
pandas,
pythonOlder,
scipy,
statsmodels,
}:
buildPythonPackage rec {
pname = "seaborn";
version = "0.13.2";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mwaskom";
repo = "seaborn";
rev = "refs/tags/v${version}";
hash = "sha256-aGIVcdG/XN999nYBHh3lJqGa3QVt0j8kmzaxdkULznY=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
matplotlib
numpy
pandas
];
passthru.optional-dependencies = {
stats = [
scipy
statsmodels
];
};
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
disabledTests =
[
# requires internet connection
"test_load_dataset_string_error"
]
++ lib.optionals (!stdenv.hostPlatform.isx86) [
# overly strict float tolerances
"TestDendrogram"
];
# All platforms should use Agg. Let's set it explicitly to avoid probing GUI
# backends (leads to crashes on macOS).
env.MPLBACKEND = "Agg";
pythonImportsCheck = [ "seaborn" ];
meta = with lib; {
description = "Statistical data visualization";
homepage = "https://seaborn.pydata.org/";
changelog = "https://github.com/mwaskom/seaborn/blob/master/doc/whatsnew/${src.rev}.rst";
license = with licenses; [ bsd3 ];
};
}
|