pythonPackages.uproot: 2.9.11 -> 3.2.6
This commit is contained in:
parent
0a4f70663e
commit
b89aa04c12
@ -1,17 +1,30 @@
|
|||||||
{lib, fetchPypi, buildPythonPackage, numpy}:
|
{ lib
|
||||||
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, numpy
|
||||||
|
, python-lz4
|
||||||
|
, uproot-methods
|
||||||
|
, awkward
|
||||||
|
, cachetools
|
||||||
|
, pythonOlder
|
||||||
|
, pytestrunner
|
||||||
|
, pytest
|
||||||
|
, backports_lzma
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "uproot";
|
pname = "uproot";
|
||||||
version = "2.9.11";
|
version = "3.2.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "da71e9e239129ec2ae7a62f9d35aebd46456f05e000ef14f32fe2c9fa8ec92c2";
|
sha256 = "af0a093f0788b8983d07b88fac3094b26c3e28358bc10cdb8d757cc07956f8d4";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
buildInputs = [ pytestrunner ];
|
||||||
numpy
|
checkInputs = [ pytest ]
|
||||||
];
|
++ lib.optionals (pythonOlder "3.3") [ backports_lzma ];
|
||||||
|
propagatedBuildInputs = [ numpy python-lz4 cachetools uproot-methods awkward ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://github.com/scikit-hep/uproot;
|
homepage = https://github.com/scikit-hep/uproot;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user