45 lines
879 B
Nix
45 lines
879 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
packageurl-python,
|
|
rich,
|
|
setuptools,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "csaf-tool";
|
|
version = "0.3.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anthonyharrison";
|
|
repo = "csaf";
|
|
tag = version;
|
|
hash = "sha256-LR6r03z0nvvAQgFHaTWfukoJmLZ6SLPXfbp/G8N/HtM=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
packageurl-python
|
|
rich
|
|
];
|
|
|
|
# has not tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "csaf" ];
|
|
|
|
nativeCheckInputs = [ versionCheckHook ];
|
|
|
|
meta = {
|
|
description = "CSAF generator and validator";
|
|
homepage = "https://github.com/anthonyharrison/csaf";
|
|
changelog = "https://github.com/anthonyharrison/csaf/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ teatwig ];
|
|
};
|
|
}
|