python37Packages.uproot{,3}-methods: 0.9.1 -> 0.10.0

This commit is contained in:
R. RyanTM
2020-12-07 09:04:55 +00:00
committed by Sandro Jäckel
parent a817ce3ada
commit f8f0db26fc
3 changed files with 31 additions and 29 deletions
@@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, awkward0
}:
buildPythonPackage rec {
version = "0.10.0";
pname = "uproot3-methods";
src = fetchPypi {
inherit pname version;
sha256 = "1rk9i1ra3panli96ghz80ddpqk77xb1kpxs3wf8rw0jy5d88pc26";
};
nativeBuildInputs = [ awkward0 ];
propagatedBuildInputs = [ numpy awkward0 ];
# No tests on PyPi
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/scikit-hep/uproot3-methods";
description = "Pythonic mix-ins for ROOT classes";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc SuperSandro2000 ];
};
}