mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +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 {
|
||||
pname = "awkward-cpp";
|
||||
version = "35";
|
||||
version = "37";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-H4sRKll70kOHlOGnIaY6phhp+pWYoXrGvYEa1vZADQY=";
|
||||
pname = "awkward_cpp";
|
||||
inherit version;
|
||||
hash = "sha256-bf9fzkr8rbSSu/fLIJCFctmb3DKqK+qGgbrPtpsqqG0=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
|
|
|
@ -1,19 +1,22 @@
|
|||
{
|
||||
lib,
|
||||
fsspec,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
hatch-fancy-pypi-readme,
|
||||
hatchling,
|
||||
|
||||
# dependencies
|
||||
awkward-cpp,
|
||||
importlib-metadata,
|
||||
fsspec,
|
||||
numpy,
|
||||
packaging,
|
||||
typing-extensions,
|
||||
jax,
|
||||
jaxlib,
|
||||
importlib-metadata,
|
||||
|
||||
# checks
|
||||
numba,
|
||||
setuptools,
|
||||
numexpr,
|
||||
|
@ -21,11 +24,15 @@
|
|||
pyarrow,
|
||||
pytest-xdist,
|
||||
pytestCheckHook,
|
||||
jax,
|
||||
jaxlib,
|
||||
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "awkward";
|
||||
version = "2.6.6";
|
||||
version = "2.6.7";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
@ -34,7 +41,7 @@ buildPythonPackage rec {
|
|||
owner = "scikit-hep";
|
||||
repo = "awkward";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-5Jg+Ki1vJ4Rz22TbqTvVtb5YLvkvP8EOQ7cmTmI6gQU=";
|
||||
hash = "sha256-6Q2eXriMYmfrgv69ytxvyrxK9HPMX8AIZ3ZStZUMGIk=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
|
@ -46,7 +53,6 @@ buildPythonPackage rec {
|
|||
[
|
||||
awkward-cpp
|
||||
fsspec
|
||||
importlib-metadata
|
||||
numpy
|
||||
packaging
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue