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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
{
lib,
stdenv,
beautifulsoup4,
buildPythonPackage,
fetchFromGitHub,
html5lib,
jinja2,
lxml,
matplotlib,
odfpy,
openpyxl,
pandas,
poetry-core,
pyarrow,
pyreadstat,
pytestCheckHook,
pythonOlder,
scipy,
sqlalchemy,
tables,
tabulate,
types-pytz,
typing-extensions,
xarray,
xlsxwriter,
}:
buildPythonPackage rec {
pname = "pandas-stubs";
version = "2.2.0.240218";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "pandas-dev";
repo = "pandas-stubs";
rev = "refs/tags/v${version}";
hash = "sha256-416vyaHcSfTfkSNKZ05edozfsMmNKcpOZAoPenCLFzQ=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
pandas
types-pytz
];
nativeCheckInputs = [
beautifulsoup4
html5lib
jinja2
lxml
matplotlib
odfpy
openpyxl
pyarrow
pyreadstat
pytestCheckHook
scipy
sqlalchemy
tables
tabulate
typing-extensions
xarray
xlsxwriter
];
disabledTests =
[
# AttributeErrors, missing dependencies, error and warning checks
"test_types_groupby"
"test_frame_groupby_resample"
"test_orc"
"test_all_read_without_lxml_dtype_backend"
"test_show_version"
]
++ lib.optionals stdenv.isDarwin [
"test_plotting" # Fatal Python error: Illegal instruction
];
pythonImportsCheck = [ "pandas" ];
meta = with lib; {
description = "Type annotations for Pandas";
homepage = "https://github.com/pandas-dev/pandas-stubs";
license = licenses.mit;
maintainers = with maintainers; [ malo ];
};
}
|