nixpkgs/pkgs/development/python-modules/cvelib/default.nix
2024-12-07 21:04:09 +00:00

58 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
click,
cve,
fetchFromGitHub,
jsonschema,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
testers,
}:
buildPythonPackage rec {
pname = "cvelib";
version = "1.7.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "RedHatProductSecurity";
repo = "cvelib";
tag = version;
hash = "sha256-AhA+2lEI/hsbIVCfSWO0vI6eWkObjsq5xYOSqVvUPkU=";
};
postPatch = ''
# collective.checkdocs is unmaintained for over 10 years
substituteInPlace pyproject.toml \
--replace-fail '"collective.checkdocs",' ""
'';
build-system = [ setuptools ];
dependencies = [
click
jsonschema
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cvelib" ];
passthru.tests.version = testers.testVersion { package = cve; };
meta = with lib; {
description = "Library and a command line interface for the CVE Services API";
homepage = "https://github.com/RedHatProductSecurity/cvelib";
changelog = "https://github.com/RedHatProductSecurity/cvelib/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ raboof ];
mainProgram = "cve";
};
}