10ec01ac20
Diff: https://github.com/scikit-hep/awkward/compare/refs/tags/v2.5.1...v2.5.2 Changelog: https://github.com/scikit-hep/awkward/releases/tag/v2.5.2
86 lines
1.6 KiB
Nix
86 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, hatch-fancy-pypi-readme
|
|
, hatchling
|
|
, awkward-cpp
|
|
, importlib-metadata
|
|
, numpy
|
|
, packaging
|
|
, typing-extensions
|
|
, fsspec
|
|
, jax
|
|
, jaxlib
|
|
, numba
|
|
, setuptools
|
|
, numexpr
|
|
, pandas
|
|
, pyarrow
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "awkward";
|
|
version = "2.5.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scikit-hep";
|
|
repo = "awkward";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-n50REyU/aWx6rj+9TZ52S3sZS25/hIaNfOe+AQGaXVA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatch-fancy-pypi-readme
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
awkward-cpp
|
|
importlib-metadata
|
|
numpy
|
|
packaging
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
typing-extensions
|
|
] ++ lib.optionals (pythonOlder "3.12") [
|
|
importlib-metadata
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
pythonImportsCheck = [ "awkward" ];
|
|
|
|
nativeCheckInputs = [
|
|
fsspec
|
|
numba
|
|
setuptools
|
|
numexpr
|
|
pandas
|
|
pyarrow
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
|
# no support for darwin
|
|
jax
|
|
jaxlib
|
|
];
|
|
|
|
# The following tests have been disabled because they need to be run on a GPU platform.
|
|
disabledTestPaths = [
|
|
"tests-cuda"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Manipulate JSON-like data with NumPy-like idioms";
|
|
homepage = "https://github.com/scikit-hep/awkward";
|
|
changelog = "https://github.com/scikit-hep/awkward/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|