f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchPypi,
|
|
numpy,
|
|
packaging,
|
|
pandas,
|
|
patsy,
|
|
pythonOlder,
|
|
scipy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
stdenv,
|
|
}:
|
|
|
|
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
|
|
];
|
|
|
|
env = lib.optionalAttrs stdenv.cc.isClang {
|
|
NIX_CFLAGS_COMPILE = toString [
|
|
"-Wno-error=implicit-function-declaration"
|
|
"-Wno-error=int-conversion"
|
|
];
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|