pythonPackages.cvelib: add version test

This commit is contained in:
Arnout Engelen 2022-12-08 09:14:22 +01:00
parent ad96519c09
commit 0b8ac7d2b3
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -6,6 +6,8 @@
, pytestCheckHook
, pythonOlder
, requests
, testers
, cve
}:
buildPythonPackage rec {
@ -38,10 +40,13 @@ buildPythonPackage rec {
"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";
license = licenses.mit;
maintainers = with maintainers; [ raboof ];
mainProgram = "cve";
};
}