mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
a6be13831a
``` 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' ```
39 lines
823 B
Nix
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 ];
|
|
};
|
|
}
|