blob: e3f40a5cff31ff0b63042f4746241dc38f53ec2c (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, cython
, fetchPypi
, numpy
, packaging
, pandas
, patsy
, pythonOlder
, scipy
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "statsmodels";
version = "0.14.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-iQVQFHrTqBzaJPC6GlxAIa3BYBCAvQDhka581v7s1q0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "numpy>=2.0.0rc1,<3" "numpy"
'';
build-system = [
cython
numpy
scipy
setuptools
setuptools-scm
];
dependencies = [
numpy
packaging
pandas
patsy
scipy
];
# Huge test suites with several test failures
doCheck = false;
pythonImportsCheck = [
"statsmodels"
];
meta = with lib; {
description = "Statistical computations and models for use with SciPy";
homepage = "https://www.github.com/statsmodels/statsmodels";
changelog = "https://github.com/statsmodels/statsmodels/releases/tag/v${version}";
license = licenses.bsd3;
};
}
|