python312Packages.crc32c: 2.4 -> 2.7.1 (#376816)

This commit is contained in:
Peder Bergebakken Sundt
2025-02-17 02:53:25 +01:00
committed by GitHub
@@ -8,8 +8,8 @@
}:
buildPythonPackage rec {
version = "2.4";
pname = "crc32c";
version = "2.7.1";
pyproject = true;
disabled = pythonOlder "3.5";
@@ -18,16 +18,17 @@ buildPythonPackage rec {
owner = "ICRAR";
repo = pname;
tag = "v${version}";
hash = "sha256-rWR2MtTLhqqvgdqEyevg/i8ZHM3OU1bJb27JkBx1J3w=";
hash = "sha256-WBFiAbdzV719vPdZkRGei2+Y33RroMZ7FeQmWo/OfE0=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python software implementation and hardware API of CRC32C checksum algorithm";
homepage = "https://github.com/ICRAR/crc32c";
changelog = "https://github.com/ICRAR/crc32c/blob/master/CHANGELOG.md";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ bcdarwin ];
};