python312Packages.whispers: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-06 15:40:43 +02:00
parent b81d35be35
commit e90f9dfd46

View File

@ -1,18 +1,19 @@
{ lib {
, astroid lib,
, beautifulsoup4 astroid,
, buildPythonPackage beautifulsoup4,
, crossplane buildPythonPackage,
, fetchFromGitHub crossplane,
, jellyfish fetchFromGitHub,
, jproperties jellyfish,
, luhn jproperties,
, lxml luhn,
, pytest-mock lxml,
, pytestCheckHook pytest-mock,
, pythonOlder pytestCheckHook,
, pyyaml pythonOlder,
, setuptools pyyaml,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -34,9 +35,7 @@ buildPythonPackage rec {
--replace-fail '"pytest-runner"' "" --replace-fail '"pytest-runner"' ""
''; '';
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
astroid astroid
@ -59,9 +58,7 @@ buildPythonPackage rec {
export PATH=$out/bin:$PATH export PATH=$out/bin:$PATH
''; '';
pythonImportsCheck = [ pythonImportsCheck = [ "whispers" ];
"whispers"
];
meta = with lib; { meta = with lib; {
description = "Tool to identify hardcoded secrets in static structured text"; description = "Tool to identify hardcoded secrets in static structured text";