depot/third_party/nixpkgs/pkgs/development/python-modules/lpc-checksum/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

39 lines
781 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, intelhex
}:
buildPythonPackage rec {
pname = "lpc-checksum";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "basilfx";
repo = "lpc_checksum";
rev = "v${version}";
hash = "sha256-POgV0BdkMLmdjBh/FToPPmJTAxsPASB7ZE32SqGGKHk=";
};
nativeBuildInputs = [
poetry-core
pytestCheckHook
];
propagatedBuildInputs = [
intelhex
];
pythonImportsCheck = [ "lpc_checksum" ];
meta = with lib; {
description = "Python script to calculate LPC firmware checksums";
mainProgram = "lpc_checksum";
homepage = "https://pypi.org/project/lpc-checksum/";
license = licenses.mit;
maintainers = with maintainers; [ otavio ];
};
}