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

36 lines
748 B
Nix
Raw Normal View History

2017-04-18 12:03:00 +02:00
{ lib
2017-04-24 17:36:28 +02:00
, self
2017-04-18 12:03:00 +02:00
, 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";
2017-04-18 12:03:00 +02:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:07 +02:00
sha256 = "6461f93a842c649922c2c9a9bc9d9c4834110b89de8c4af196a791ab8f42ba3b";
2017-04-18 12:03:00 +02:00
};
2017-09-07 09:48:54 +02:00
checkInputs = with self; [ nose ];
2017-04-18 12:03:00 +02:00
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;
2017-04-18 12:03:00 +02:00
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-18 12:03:00 +02:00
};
2017-04-20 10:28:31 +02:00
}