Files
nixpkgs/pkgs/development/python-modules/crccheck/default.nix
Martin Weinelt 290c979ee9 python3Packages.crccheck: 1.3.0 -> 1.3.1
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:57 +02:00

40 lines
737 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
setuptools,
setuptools-scm,
}:
let
pname = "crccheck";
version = "1.3.1";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchFromGitHub {
owner = "MartinScharrer";
repo = "crccheck";
tag = "v${version}";
hash = "sha256-hT+8+moni7turn5MK719b4Xy336htyWWmoMnhgxKkYo=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ unittestCheckHook ];
meta = with lib; {
description = "Python library for CRCs and checksums";
homepage = "https://github.com/MartinScharrer/crccheck";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.linux;
};
}