1{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, root_numpy, tables }: 2 3buildPythonPackage rec { 4 pname = "rootpy"; 5 version = "1.0.1"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0zp2bh87l3f0shiqslbvfmavfdj8m80y8fsrz8rsi5pzqj7zr1bx"; 11 }; 12 13 disabled = isPy3k; 14 15 propagatedBuildInputs = [ matplotlib numpy root root_numpy tables ]; 16 17 meta = with lib; { 18 homepage = http://www.rootpy.org; 19 license = licenses.bsd3; 20 description = "Pythonic interface to the ROOT framework"; 21 maintainers = with maintainers; [ veprbl ]; 22 }; 23}