Merge pull request #291028 from NixOS/pr/uproot_5_3_1
python311Packages.uproot: 5.2.2 -> 5.3.1
This commit is contained in:
commit
4546a05bc5
2 changed files with 8 additions and 8 deletions
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "coffea";
|
pname = "coffea";
|
||||||
version = "2024.2.1";
|
version = "2024.2.2";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
@ -41,7 +41,7 @@ buildPythonPackage rec {
|
||||||
owner = "CoffeaTeam";
|
owner = "CoffeaTeam";
|
||||||
repo = "coffea";
|
repo = "coffea";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-TQ0aC2iFPWh24ce1WoVRluPvnwvBscLtFl8/wcW/Clg=";
|
hash = "sha256-GdoVb9YtlUlrSx7TWWrdHOqOJJ4M+kJspOllv6HgFXk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, awkward
|
, awkward
|
||||||
|
, cramjam
|
||||||
, hatch-vcs
|
, hatch-vcs
|
||||||
, hatchling
|
, hatchling
|
||||||
, numpy
|
, numpy
|
||||||
|
@ -10,17 +11,15 @@
|
||||||
, packaging
|
, packaging
|
||||||
, pandas
|
, pandas
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, lz4
|
|
||||||
, pytest-timeout
|
, pytest-timeout
|
||||||
, rangehttpserver
|
, rangehttpserver
|
||||||
, scikit-hep-testdata
|
, scikit-hep-testdata
|
||||||
, xxhash
|
, xxhash
|
||||||
, zstandard
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "uproot";
|
pname = "uproot";
|
||||||
version = "5.2.2";
|
version = "5.3.1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
@ -29,7 +28,7 @@ buildPythonPackage rec {
|
||||||
owner = "scikit-hep";
|
owner = "scikit-hep";
|
||||||
repo = "uproot5";
|
repo = "uproot5";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-7X8oIMvOSC1JXQrZTPXLiqsUnfSc2Rx3KCvxKbhvPzM=";
|
hash = "sha256-cZVdsemaA3ni6xFfrkyLJA+12B7vyURj9OYVuOhqTXU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -39,6 +38,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
awkward
|
awkward
|
||||||
|
cramjam
|
||||||
numpy
|
numpy
|
||||||
fsspec
|
fsspec
|
||||||
packaging
|
packaging
|
||||||
|
@ -47,12 +47,10 @@ buildPythonPackage rec {
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pandas
|
pandas
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
lz4
|
|
||||||
pytest-timeout
|
pytest-timeout
|
||||||
rangehttpserver
|
rangehttpserver
|
||||||
scikit-hep-testdata
|
scikit-hep-testdata
|
||||||
xxhash
|
xxhash
|
||||||
zstandard
|
|
||||||
];
|
];
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
|
@ -79,6 +77,8 @@ buildPythonPackage rec {
|
||||||
"test_open_fsspec_http"
|
"test_open_fsspec_http"
|
||||||
"test_open_fsspec_github"
|
"test_open_fsspec_github"
|
||||||
"test_pickle_roundtrip_http"
|
"test_pickle_roundtrip_http"
|
||||||
|
# Cyclic dependency with dask-awkward
|
||||||
|
"test_decompression_executor_for_dask"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
|
|
Loading…
Reference in a new issue