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