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
commit 40edf5eeed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View file

@ -2036,6 +2036,11 @@
github = "kristoff3r";
name = "Kristoffer Søholm";
};
ktf = {
email = "giulio.eulisse@cern.ch";
github = "ktf";
name = "Giuluo Eulisse";
};
ktosiek = {
email = "tomasz.kontusz@gmail.com";
github = "ktosiek";

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 ];
};
}

View file

@ -14621,6 +14621,8 @@ in {
uritemplate = callPackage ../development/python-modules/uritemplate { };
uproot = callPackage ../development/python-modules/uproot {};
uptime = buildPythonPackage rec {
name = "uptime-${version}";
version = "3.0.1";