pythonPackages.uproot-methods: init at 0.2.5
This commit is contained in:
parent
a19b12e797
commit
0a4f70663e
25
pkgs/development/python-modules/uproot-methods/default.nix
Normal file
25
pkgs/development/python-modules/uproot-methods/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7952,6 +7952,8 @@ in {
|
|||||||
|
|
||||||
uproot = callPackage ../development/python-modules/uproot {};
|
uproot = callPackage ../development/python-modules/uproot {};
|
||||||
|
|
||||||
|
uproot-methods = callPackage ../development/python-modules/uproot-methods { };
|
||||||
|
|
||||||
uptime = buildPythonPackage rec {
|
uptime = buildPythonPackage rec {
|
||||||
name = "uptime-${version}";
|
name = "uptime-${version}";
|
||||||
version = "3.0.1";
|
version = "3.0.1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user