Merge pull request #195940 from raboof/cvelib

cve: init at 1.0.0
This commit is contained in:
Jonas Heinrich 2022-10-19 11:05:44 +02:00 committed by GitHub
commit e845d7890b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ buildPythonPackage
, fetchFromGitHub
, requests
, click
, lib
}:
buildPythonPackage rec {
pname = "cvelib";
version = "1.0.0";
src = fetchFromGitHub {
owner = "RedHatProductSecurity";
repo = "cvelib";
rev = "tags/${version}";
sha256 = "sha256-KUj9Cnvl7r8NMmZvVj5CB0uZvLNK5aHcLc+NzxFrv0I=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
propagatedBuildInputs = [ requests click ];
pythonImportsCheck = [
"cvelib"
];
meta = with lib; {
description = "A library and a command line interface for the CVE Services API";
homepage = "https://github.com/RedHatProductSecurity/cvelib";
license = licenses.mit;
maintainers = with maintainers; [ raboof ];
};
}

View File

@ -260,6 +260,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
cve = with python3Packages; toPythonApplication cvelib;
fiche = callPackage ../servers/fiche { };
fishnet = callPackage ../servers/fishnet { };

View File

@ -2191,6 +2191,8 @@ in {
curve25519-donna = callPackage ../development/python-modules/curve25519-donna { };
cvelib = callPackage ../development/python-modules/cvelib { };
cvxopt = callPackage ../development/python-modules/cvxopt { };
cvxpy = callPackage ../development/python-modules/cvxpy { };