Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 572 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, numpy 5, awkward 6}: 7 8buildPythonPackage rec { 9 version = "0.7.0"; 10 pname = "uproot-methods"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0awxd4p8yr27k4iayc0phw99bxgw04dnd3lb372hj9wjvldm0hzr"; 15 }; 16 17 propagatedBuildInputs = [ numpy awkward ]; 18 19 # No tests on PyPi 20 doCheck = false; 21 22 meta = with stdenv.lib; { 23 homepage = https://github.com/scikit-hep/uproot-methods; 24 description = "Pythonic mix-ins for ROOT classes"; 25 license = licenses.bsd3; 26 maintainers = [ maintainers.costrouc ]; 27 }; 28}