root_numpy: init at 4.7.3

This commit is contained in:
Dmitry Kalinkin 2017-10-24 19:10:16 -04:00
parent 1d317bd84a
commit 31b2e70f8d
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root }:
buildPythonPackage rec {
pname = "root_numpy";
version = "4.7.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0vy6mqmkddfv46yc4hp43fvaisn3yw92ryaw031k841hhj73q0xg";
};
disabled = isPy3k; # blocked by #27649
propagatedBuildInputs = [ numpy root ];
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

@ -18919,6 +18919,8 @@ in {
};
};
root_numpy = callPackage ../development/python-modules/root_numpy { };
rootpy = buildPythonPackage rec {
version = "0.9.0";
name = "rootpy-${version}";