504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
46 lines
902 B
Nix
46 lines
902 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crc";
|
|
version = "6.0.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nicoretti";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-bQa+hkWRXRlyvX3/RL3DAjh9V/kTNg8C7/6viLLKtpk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"crc"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"test/bench"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
|
|
description = "Python module for calculating and verifying predefined & custom CRC's";
|
|
homepage = "https://nicoretti.github.io/crc/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ jleightcap ];
|
|
};
|
|
}
|