nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.awkward: 2.8.1 -> 2.8.2

authored by

R. Ryantm and committed by
Dmitry Kalinkin
4dff0dff 92ed89f4

+3 -3
+3 -3
pkgs/development/python-modules/awkward/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "awkward"; 27 - version = "2.8.1"; 27 + version = "2.8.2"; 28 28 pyproject = true; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "scikit-hep"; 32 32 repo = "awkward"; 33 33 tag = "v${version}"; 34 - hash = "sha256-37yUZSD9c92ydjjt5Z7KnUzfSMAQM37Ah4WGp9HWiDs="; 34 + hash = "sha256-OpEzctuCah/ueqw/D7ZadDLJLD3HqSdgAjFcEHhR47A="; 35 35 }; 36 36 37 37 build-system = [ ··· 73 73 meta = { 74 74 description = "Manipulate JSON-like data with NumPy-like idioms"; 75 75 homepage = "https://github.com/scikit-hep/awkward"; 76 - changelog = "https://github.com/scikit-hep/awkward/releases/tag/v${version}"; 76 + changelog = "https://github.com/scikit-hep/awkward/releases/tag/${src.tag}"; 77 77 license = lib.licenses.bsd3; 78 78 maintainers = with lib.maintainers; [ veprbl ]; 79 79 };