1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, numpy
5, awkward
6}:
7
8buildPythonPackage rec {
9 version = "0.7.3";
10 pname = "uproot-methods";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "01x7raa2l75g96y6fsi6h2fjpjm0swlnw0j9vn8mlahridycrjss";
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}