nixpkgs/pkgs/development/python-modules/statsmodels/default.nix
Jonathan Ringer a6be13831a python2Packages.statsmodels: disable py27, abandoned
```
  Processing ./statsmodels-0.11.1-cp27-cp27mu-linux_x86_64.whl
  ERROR: Package 'statsmodels' requires a different Python: 2.7.18 not in '>=3.5'
```
2020-07-31 10:38:48 +02:00

39 lines
823 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, nose
, numpy
, scipy
, pandas
, patsy
, cython
, matplotlib
}:
buildPythonPackage rec {
pname = "statsmodels";
version = "0.11.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "5bde3fa0a35a91b45dba7cbc28270b5b649ff1d721c89290883f6e831672d5f0";
};
nativeBuildInputs = [ cython ];
checkInputs = [ nose ];
propagatedBuildInputs = [ numpy scipy pandas patsy matplotlib ];
# Huge test suites with several test failures
doCheck = false;
pythonImportsCheck = [ "statsmodels" ];
meta = {
description = "Statistical computations and models for use with SciPy";
homepage = "https://www.github.com/statsmodels/statsmodels";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}