pythonPackages.uproot: init at 2.8.23

This commit is contained in:
Giulio Eulisse 2018-04-26 09:59:20 +02:00
parent 0d32d9318b
commit 54cf5d9358
No known key found for this signature in database
GPG Key ID: 263E2E7E7F9CD092
2 changed files with 24 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 ];
};
}

View File

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