1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder, pytestCheckHook }:
3 buildPythonPackage rec {
8 disabled = pythonOlder "3.5";
10 src = fetchFromGitHub {
13 rev = "refs/tags/v${version}";
14 hash = "sha256-lPEojWeAhfWpGR+k+Tuo4n68iZOk7lUDxjWXj5vN4I0=";
17 nativeCheckInputs = [ pytestCheckHook ];
20 description = "Python software implementation and hardware API of CRC32C checksum algorithm";
21 homepage = "https://github.com/ICRAR/crc32c";
22 license = lib.licenses.lgpl21;
23 maintainers = with lib.maintainers; [ bcdarwin ];