Merge pull request #39120 from ktf/add-uproot

pythonPackages.uproot: init at 2.8.23.
This commit is contained in:
Robert Schütz
2018-05-16 10:19:28 +02:00
committed by GitHub
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{lib, fetchPypi, buildPythonPackage, numpy}:
buildPythonPackage rec {
pname = "uproot";
version = "2.8.23";
src = fetchPypi {
inherit pname version;
sha256 = "121ggyl5s0q66yrbdfznvzrc793zq1w2xnr3baadlzfvqdlkhgj7";
};
propagatedBuildInputs = [
numpy
];
meta = with lib; {
homepage = https://github.com/scikit-hep/uproot;
description = "ROOT I/O in pure Python and Numpy";
license = licenses.bsd3;
maintainers = with maintainers; [ ktf ];
};
}