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-12-10 18:07:42 +00:00
version = "0.10.2";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:42 +00:00
sha256 = "9cd2194c6642a8754e85f9a6e6912cdf996bebf6ff715d3cc67f65dadfd37cc9";
};
2017-09-07 08:48:54 +01:00
checkInputs = with self; [ nose ];
propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib];
2017-09-07 08:48:54 +01: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 09:28:31 +01:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
2017-04-20 09:28:31 +01:00
}