Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #8637 from FRidh/statsmodels

python-packages statsmodels: init at 0.6.1

+25
+25
pkgs/top-level/python-packages.nix
··· 17068 17068 }; 17069 17069 }; 17070 17070 17071 + statsmodels = buildPythonPackage rec { 17072 + name = "statsmodels-${version}"; 17073 + version = "0.6.1"; 17074 + 17075 + src = pkgs.fetchurl { 17076 + url = "https://pypi.python.org/packages/source/s/statsmodels/${name}.tar.gz"; 17077 + sha256 = "be4e44374aec9e848b73e5a230dee190ac0c4519e1d40f69a5813190b13ec676"; 17078 + }; 17079 + 17080 + buildInputs = with self; [ nose ]; 17081 + propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib]; 17082 + 17083 + meta = { 17084 + description = "Statistical computations and models for use with SciPy"; 17085 + homepage = "https://www.github.com/statsmodels/statsmodels"; 17086 + license = licenses.bsd3; 17087 + maintainer = with maintainers; [ fridh ]; 17088 + }; 17089 + 17090 + # Many tests fail when using latest numpy and pandas. 17091 + # See also https://github.com/statsmodels/statsmodels/issues/2602 17092 + doCheck = false; 17093 + }; 17094 + 17071 17095 python_statsd = buildPythonPackage rec { 17072 17096 name = "python-statsd-${version}"; 17073 17097 version = "1.6.0"; ··· 17084 17108 description = "A client for Etsy's node-js statsd server"; 17085 17109 homepage = https://github.com/WoLpH/python-statsd; 17086 17110 license = licenses.bsd3; 17111 + maintainers = with maintainers; [ fridh ]; 17087 17112 }; 17088 17113 }; 17089 17114