Merge pull request #205116 from raboof/cve-add-version-test

pythonPackages.cvelib: add version test
This commit is contained in:
Arnout Engelen 2023-01-07 11:23:12 +01:00 committed by GitHub
commit 82acf0068a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,8 @@
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, testers
, cve
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -38,10 +40,13 @@ buildPythonPackage rec {
"cvelib" "cvelib"
]; ];
passthru.tests.version = testers.testVersion { package = cve; };
meta = with lib; { meta = with lib; {
description = "Library and a command line interface for the CVE Services API"; description = "Library and a command line interface for the CVE Services API";
homepage = "https://github.com/RedHatProductSecurity/cvelib"; homepage = "https://github.com/RedHatProductSecurity/cvelib";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ raboof ]; maintainers = with maintainers; [ raboof ];
mainProgram = "cve";
}; };
} }