Commit 4eeb3f36 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.cvelib: format with nixfmt

parent a958ef6f
Loading
Loading
Loading
Loading
+15 −20
Original line number Diff line number Diff line
{ 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; };