python311Packages.awkward-cpp: 33 -> 34

This commit is contained in:
Gaetan Lepage 2024-05-29 09:04:30 +02:00
parent 5c8e9f48b0
commit b1f4deeb0b

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "awkward-cpp";
version = "33";
version = "34";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-VQrevM0ynRjQLpUibQuJaYGI/TPkTwdFCULGkogZJ9g=";
hash = "sha256-OayBTXafOK3ppfbDm4Wwe7wFr1Y0L7FXQu3OEjf54Ek=";
};
build-system = [
@ -35,11 +35,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "awkward_cpp" ];
meta = with lib; {
meta = {
description = "CPU kernels and compiled extensions for Awkward Array";
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 ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
};
}