mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #331861 from GaetanLepage/awkward
python312Packages.awkward: 2.6.6 -> 2.6.7
This commit is contained in:
commit
353f94c1a9
@ -12,14 +12,15 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "awkward-cpp";
|
pname = "awkward-cpp";
|
||||||
version = "35";
|
version = "37";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "awkward_cpp";
|
||||||
hash = "sha256-H4sRKll70kOHlOGnIaY6phhp+pWYoXrGvYEa1vZADQY=";
|
inherit version;
|
||||||
|
hash = "sha256-bf9fzkr8rbSSu/fLIJCFctmb3DKqK+qGgbrPtpsqqG0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -1,19 +1,22 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
fsspec,
|
|
||||||
stdenv,
|
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
|
||||||
|
# build-system
|
||||||
hatch-fancy-pypi-readme,
|
hatch-fancy-pypi-readme,
|
||||||
hatchling,
|
hatchling,
|
||||||
|
|
||||||
|
# dependencies
|
||||||
awkward-cpp,
|
awkward-cpp,
|
||||||
importlib-metadata,
|
fsspec,
|
||||||
numpy,
|
numpy,
|
||||||
packaging,
|
packaging,
|
||||||
typing-extensions,
|
typing-extensions,
|
||||||
jax,
|
importlib-metadata,
|
||||||
jaxlib,
|
|
||||||
|
# checks
|
||||||
numba,
|
numba,
|
||||||
setuptools,
|
setuptools,
|
||||||
numexpr,
|
numexpr,
|
||||||
@ -21,11 +24,15 @@
|
|||||||
pyarrow,
|
pyarrow,
|
||||||
pytest-xdist,
|
pytest-xdist,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
|
jax,
|
||||||
|
jaxlib,
|
||||||
|
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "awkward";
|
pname = "awkward";
|
||||||
version = "2.6.6";
|
version = "2.6.7";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -34,7 +41,7 @@ buildPythonPackage rec {
|
|||||||
owner = "scikit-hep";
|
owner = "scikit-hep";
|
||||||
repo = "awkward";
|
repo = "awkward";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-5Jg+Ki1vJ4Rz22TbqTvVtb5YLvkvP8EOQ7cmTmI6gQU=";
|
hash = "sha256-6Q2eXriMYmfrgv69ytxvyrxK9HPMX8AIZ3ZStZUMGIk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
@ -46,7 +53,6 @@ buildPythonPackage rec {
|
|||||||
[
|
[
|
||||||
awkward-cpp
|
awkward-cpp
|
||||||
fsspec
|
fsspec
|
||||||
importlib-metadata
|
|
||||||
numpy
|
numpy
|
||||||
packaging
|
packaging
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user