python312Packages.cvelib: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-16 09:14:07 +02:00
parent a958ef6f83
commit 4eeb3f3661

View File

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, click
, cve
, fetchFromGitHub
, jsonschema
, pytestCheckHook
, pythonOlder
, requests
, setuptools
, testers
{
lib,
buildPythonPackage,
click,
cve,
fetchFromGitHub,
jsonschema,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
testers,
}:
buildPythonPackage rec {
@ -31,9 +32,7 @@ buildPythonPackage rec {
--replace-fail '"collective.checkdocs",' ""
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
click
@ -41,13 +40,9 @@ buildPythonPackage rec {
requests
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"cvelib"
];
pythonImportsCheck = [ "cvelib" ];
passthru.tests.version = testers.testVersion { package = cve; };