Files
nixpkgs/pkgs/development/python-modules/crc32c/default.nix
T
Martin Weinelt b42648e01c python3Packages.crc32c: 2.7.1 -> 2.8
https://github.com/ICRAR/crc32c/blob/master/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:39 +01:00

33 lines
746 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "crc32c";
version = "2.8";
pyproject = true;
src = fetchFromGitHub {
owner = "ICRAR";
repo = "crc32c";
tag = "v${version}";
hash = "sha256-LPiKms0fVHmgIiwUNWGTAdGByV+Pmh9dRaF/tro2rKo=";
};
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 ];
};
}