python312Packages.sqlmap: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 00:42:04 +02:00
parent 13c669b3d8
commit 513bb9b52f
1 changed files with 10 additions and 13 deletions

View File

@ -1,10 +1,11 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, file
, pythonOlder
, setuptools
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
file,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -28,16 +29,12 @@ buildPythonPackage rec {
echo 'LAST_UPDATE_NAGGING_DAYS = float("inf")' >> sqlmap/lib/core/settings.py
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
# No tests in archive
doCheck = false;
pythonImportsCheck = [
"sqlmap"
];
pythonImportsCheck = [ "sqlmap" ];
meta = with lib; {
description = "Automatic SQL injection and database takeover tool";