pythonPackages.uproot-methods: init at 0.2.5

This commit is contained in:
Chris Ostrouchov 2018-10-25 11:26:19 -04:00 committed by Frederik Rietdijk
parent a19b12e797
commit 0a4f70663e
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, awkward
}:
buildPythonPackage rec {
version = "0.2.5";
pname = "uproot-methods";
src = fetchPypi {
inherit pname version;
sha256 = "7d5563b3335af414a12caf5b350c952fdc7576abb17630382de5564a7c254ae6";
};
propagatedBuildInputs = [ numpy awkward ];
meta = with stdenv.lib; {
homepage = https://github.com/scikit-hep/uproot-methods;
description = "Pythonic mix-ins for ROOT classes";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View File

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