1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5, awkward0 6}: 7 8buildPythonPackage rec { 9 version = "0.10.1"; 10 pname = "uproot3-methods"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "dd68f90be1ea276360b96369836849df29045f7fe4e534f9ac21ea00798ee358"; 15 }; 16 17 nativeBuildInputs = [ awkward0 ]; 18 19 propagatedBuildInputs = [ numpy awkward0 ]; 20 21 # No tests on PyPi 22 doCheck = false; 23 pythonImportsCheck = [ "uproot3_methods" ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/scikit-hep/uproot3-methods"; 27 description = "Pythonic mix-ins for ROOT classes"; 28 license = licenses.bsd3; 29 maintainers = with maintainers; [ costrouc SuperSandro2000 ]; 30 }; 31}