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