10 buildPythonPackage rec {
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
24 build-system = [ poetry-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "crc" ];
30 disabledTestPaths = [ "test/bench" ];
33 description = "Python module for calculating and verifying predefined & custom CRC's";
34 homepage = "https://nicoretti.github.io/crc/";
35 changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
36 license = licenses.bsd2;
37 maintainers = with maintainers; [ jleightcap ];