nixpkgs/pkgs/development/python-modules/crc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
902 B
Nix
Raw Permalink Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "crc";
2024-04-22 20:30:34 +00:00
version = "7.0.0";
2024-02-14 10:40:36 +00:00
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Nicoretti";
2024-02-14 10:40:36 +00:00
repo = "crc";
rev = "refs/tags/${version}";
2024-04-22 20:30:34 +00:00
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "crc" ];
disabledTestPaths = [ "test/bench" ];
meta = with lib; {
description = "Python module for calculating and verifying predefined & custom CRC's";
homepage = "https://nicoretti.github.io/crc/";
2024-04-23 06:34:53 +00:00
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ jleightcap ];
2024-04-23 06:34:53 +00:00
mainProgram = "crc";
};
}