pythonPackages.root_numpy: remove

This commit is contained in:
Dmitry Kalinkin 2019-12-14 12:05:18 -05:00
parent 0eb53ff3c7
commit fc21603717
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
3 changed files with 2 additions and 31 deletions

View File

@ -1,27 +0,0 @@
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose, setuptools }:
buildPythonPackage rec {
pname = "root_numpy";
version = "4.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "5842bbcde92133f60a61f56e9f0a875a0dbc2a567cc65a9ac141ecd72e416878";
};
disabled = isPy3k; # blocked by #27649
checkInputs = [ nose ];
checkPhase = ''
python setup.py install_lib -d .
nosetests -s -v root_numpy
'';
propagatedBuildInputs = [ numpy root setuptools ];
meta = with lib; {
homepage = http://scikit-hep.org/root_numpy;
license = licenses.bsd3;
description = "The interface between ROOT and NumPy";
maintainers = with maintainers; [ veprbl ];
};
}

View File

@ -1,4 +1,4 @@
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, root_numpy, tables, pytest }:
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, tables, pytest }:
buildPythonPackage rec {
pname = "rootpy";
@ -11,7 +11,7 @@ buildPythonPackage rec {
disabled = isPy3k;
propagatedBuildInputs = [ matplotlib numpy root root_numpy tables ];
propagatedBuildInputs = [ matplotlib numpy root tables ];
checkInputs = [ pytest ];
checkPhase = ''

View File

@ -5044,8 +5044,6 @@ in {
Pyro4 = callPackage ../development/python-modules/pyro4 { };
root_numpy = callPackage ../development/python-modules/root_numpy { };
rootpy = callPackage ../development/python-modules/rootpy { };
rope = callPackage ../development/python-modules/rope { };