python312Packages.pytenable: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 23:29:28 +02:00
parent 8456d31ce2
commit 8a36964ecf

View file

@ -1,21 +1,22 @@
{ lib {
, buildPythonPackage lib,
, defusedxml buildPythonPackage,
, fetchFromGitHub defusedxml,
, marshmallow fetchFromGitHub,
, pytest-datafiles marshmallow,
, pytest-vcr pytest-datafiles,
, pytestCheckHook pytest-vcr,
, python-box pytestCheckHook,
, python-dateutil python-box,
, pythonOlder python-dateutil,
, requests pythonOlder,
, requests-pkcs12 requests,
, responses requests-pkcs12,
, restfly responses,
, semver restfly,
, setuptools semver,
, typing-extensions setuptools,
typing-extensions,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -32,9 +33,7 @@ buildPythonPackage rec {
hash = "sha256-acMafLlO0yGEnW+0XeBWUpDWvOPFAB4RK/XyAb2JbPw="; hash = "sha256-acMafLlO0yGEnW+0XeBWUpDWvOPFAB4RK/XyAb2JbPw=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
defusedxml defusedxml
@ -71,9 +70,7 @@ buildPythonPackage rec {
"test_events_list_vcr" "test_events_list_vcr"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "tenable" ];
"tenable"
];
meta = with lib; { meta = with lib; {
description = "Python library for the Tenable.io and TenableSC API"; description = "Python library for the Tenable.io and TenableSC API";