nixpkgs/pkgs/development/python-modules/statsmodels/default.nix

36 lines
749 B
Nix
Raw Normal View History

{ lib
, self
, buildPythonPackage
, fetchPypi
, nose
, numpy
, scipy
, pandas
, patsy
, cython
, matplotlib
}:
buildPythonPackage rec {
pname = "statsmodels";
2019-07-27 12:03:02 +02:00
version = "0.10.1";
src = fetchPypi {
inherit pname version;
2019-07-27 12:03:02 +02:00
sha256 = "320659a80f916c2edf9dfbe83512d9004bb562b72eedb7d9374562038697fa10";
};
2017-09-07 09:48:54 +02:00
checkInputs = with self; [ nose ];
propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib];
2017-09-07 09:48:54 +02:00
# Huge test suites with several test failures
doCheck = false;
meta = {
description = "Statistical computations and models for use with SciPy";
homepage = https://www.github.com/statsmodels/statsmodels;
2017-04-20 10:28:31 +02:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
2017-04-20 10:28:31 +02:00
}