mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 02:03:21 +00:00
python312Packages.sqlmap: format with nixfmt
This commit is contained in:
parent
13c669b3d8
commit
513bb9b52f
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user