1{lib, fetchPypi, buildPythonPackage, numpy}: 2 3buildPythonPackage rec { 4 pname = "uproot"; 5 version = "2.9.11"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "da71e9e239129ec2ae7a62f9d35aebd46456f05e000ef14f32fe2c9fa8ec92c2"; 10 }; 11 12 propagatedBuildInputs = [ 13 numpy 14 ]; 15 16 meta = with lib; { 17 homepage = https://github.com/scikit-hep/uproot; 18 description = "ROOT I/O in pure Python and Numpy"; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ ktf ]; 21 }; 22}