mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib, fetchPypi, buildPythonPackage, isPy27
|
|
, awkward
|
|
, backports_lzma
|
|
, cachetools
|
|
, lz4
|
|
, pandas
|
|
, pytestrunner
|
|
, pytest
|
|
, pkgconfig
|
|
, mock
|
|
, numpy
|
|
, requests
|
|
, uproot-methods
|
|
, xxhash
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uproot";
|
|
version = "3.11.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "19rvkxv015lkx0g01sb54y6agdbqbmkpxlyka4z1zf9dx2lx1iq5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
|
|
checkInputs = [
|
|
lz4
|
|
mock
|
|
pandas
|
|
pkgconfig
|
|
pytest
|
|
requests
|
|
xxhash
|
|
] ++ lib.optional isPy27 backports_lzma;
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
cachetools
|
|
uproot-methods
|
|
awkward
|
|
];
|
|
|
|
# skip tests which do network calls
|
|
# test_compression.py is missing zstandard package
|
|
checkPhase = ''
|
|
pytest tests -k 'not hist_in_tree \
|
|
and not branch_auto_interpretation' \
|
|
--ignore=tests/test_compression.py
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|