3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/uproot/default.nix

54 lines
915 B
Nix
Raw Normal View History

2019-06-19 01:25:40 +01:00
{ lib, fetchPypi, buildPythonPackage
2018-10-25 16:26:45 +01:00
, awkward
, cachetools
2019-06-19 01:25:40 +01:00
, lz4
2018-10-25 16:26:45 +01:00
, pytestrunner
, pytest
2019-01-17 21:18:08 +00:00
, pkgconfig
2019-03-05 12:08:45 +00:00
, mock
2019-06-19 01:25:40 +01:00
, numpy
2019-03-05 12:08:45 +00:00
, requests
2019-06-19 01:25:40 +01:00
, uproot-methods
, xxhash
2018-10-25 16:26:45 +01:00
}:
2018-04-26 08:59:20 +01:00
buildPythonPackage rec {
pname = "uproot";
2019-06-19 01:25:40 +01:00
version = "3.7.0";
2018-04-26 08:59:20 +01:00
src = fetchPypi {
inherit pname version;
2019-06-19 01:25:40 +01:00
sha256 = "0glsl57ha0d4pn5q318dmzml7crml1h8yilbhxh768wcs2030s1g";
2018-04-26 08:59:20 +01:00
};
2019-03-05 12:08:45 +00:00
nativeBuildInputs = [ pytestrunner ];
2019-06-19 01:25:40 +01:00
checkInputs = [
lz4
mock
pkgconfig
pytest
requests
xxhash
];
propagatedBuildInputs = [
numpy
cachetools
uproot-methods
awkward
];
# skip tests which do network calls
checkPhase = ''
pytest tests -k 'not hist_in_tree and not branch_auto_interpretation'
'';
2018-04-26 08:59:20 +01:00
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 ];
};
}