1{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root }:
2
3buildPythonPackage rec {
4 pname = "root_numpy";
5 version = "4.7.3";
6 name = "${pname}-${version}";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0vy6mqmkddfv46yc4hp43fvaisn3yw92ryaw031k841hhj73q0xg";
11 };
12
13 disabled = isPy3k; # blocked by #27649
14
15 propagatedBuildInputs = [ numpy root ];
16
17 meta = with lib; {
18 homepage = http://scikit-hep.org/root_numpy;
19 license = licenses.bsd3;
20 description = "The interface between ROOT and NumPy";
21 maintainers = with maintainers; [ veprbl ];
22 };
23}