python2Packages.statsmodels: disable py2, abandonded

```
  Processing ./statsmodels-0.11.1-cp27-cp27mu-linux_x86_64.whl
  ERROR: Package 'statsmodels' requires a different Python: 2.7.18 not in '>=3.5'
```
This commit is contained in:
Jonathan Ringer 2020-07-07 13:12:27 -07:00
parent 4a9dac0081
commit 82f2f1bd78
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,7 +1,7 @@
{ lib
, self
, buildPythonPackage
, fetchPypi
, isPy27
, nose
, numpy
, scipy
@ -20,11 +20,13 @@ buildPythonPackage rec {
sha256 = "5bde3fa0a35a91b45dba7cbc28270b5b649ff1d721c89290883f6e831672d5f0";
};
checkInputs = with self; [ nose ];
propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib];
nativeBuildInputs = [ cython ];
checkInputs = [ nose ];
propagatedBuildInputs = [ numpy scipy pandas patsy matplotlib ];
# Huge test suites with several test failures
doCheck = false;
pythonImportsCheck = [ "statsmodels" ];
meta = {
description = "Statistical computations and models for use with SciPy";