1
0
Fork 1
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:
Gaétan Lepage 2024-08-03 10:08:21 +02:00 committed by GitHub
commit 353f94c1a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 11 deletions

View file

@ -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 = [

View file

@ -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
]