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

36 lines
748 B
Nix
Raw Normal View History

{ lib
, self
, buildPythonPackage
, fetchPypi
, nose
, numpy
, scipy
, pandas
, patsy
, cython
, matplotlib
}:
buildPythonPackage rec {
pname = "statsmodels";
2018-06-12 18:47:07 +02:00
version = "0.9.0";
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:07 +02:00
sha256 = "6461f93a842c649922c2c9a9bc9d9c4834110b89de8c4af196a791ab8f42ba3b";
};
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
}