567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
47 lines
924 B
Nix
47 lines
924 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jsonschema,
|
|
unittestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cvss";
|
|
version = "3.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RedHatProductSecurity";
|
|
repo = "cvss";
|
|
tag = "v${version}";
|
|
hash = "sha256-udUs76wfvC9LfjlKyWmuPV0RT2P/COTwYw3hgDt3tPs=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
jsonschema
|
|
unittestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "cvss" ];
|
|
|
|
preCheck = ''
|
|
cd tests
|
|
'';
|
|
|
|
meta = {
|
|
description = "Library for CVSS2/3/4";
|
|
homepage = "https://github.com/RedHatProductSecurity/cvss";
|
|
changelog = "https://github.com/RedHatProductSecurity/cvss/releases/tag/${src.tag}";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "cvss_calculator";
|
|
};
|
|
}
|