pythonPackages.uproot: init at 2.8.23
This commit is contained in:
parent
0d32d9318b
commit
54cf5d9358
22
pkgs/development/python-modules/uproot/default.nix
Normal file
22
pkgs/development/python-modules/uproot/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user