pythonPackages.rootpy: remove

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

View File

@ -1,30 +0,0 @@
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, tables, pytest }:
buildPythonPackage rec {
pname = "rootpy";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0zp2bh87l3f0shiqslbvfmavfdj8m80y8fsrz8rsi5pzqj7zr1bx";
};
disabled = isPy3k;
propagatedBuildInputs = [ matplotlib numpy root tables ];
checkInputs = [ pytest ];
checkPhase = ''
# tests fail with /homeless-shelter
export HOME=$PWD
# skip problematic tests
py.test rootpy -k "not test_stl and not test_cpp and not test_xrootd_glob_single and not test_xrootd_glob_multiple"
'';
meta = with lib; {
homepage = http://www.rootpy.org;
license = licenses.bsd3;
description = "Pythonic interface to the ROOT framework";
maintainers = with maintainers; [ veprbl ];
};
}

View File

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