Files
nixpkgs/pkgs/development/python-modules/sqlmap/default.nix
Fabian Affolter ab343203ec python313Packages.sqlmap: remove disabled
Removed restriction for Python version older than 3.7.
2025-10-08 09:39:55 +02:00

45 lines
1.1 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
file,
setuptools,
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.9.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-S5A/zjf5PpauzIU3BGiijgGEq7OrFoj13xkYAJgdnOA=";
};
postPatch = ''
substituteInPlace sqlmap/thirdparty/magic/magic.py --replace "ctypes.util.find_library('magic')" \
"'${file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}'"
# the check for the last update date does not work in Nix,
# since the timestamp of the all files in the nix store is reset to the unix epoch
echo 'LAST_UPDATE_NAGGING_DAYS = float("inf")' >> sqlmap/lib/core/settings.py
'';
build-system = [ setuptools ];
# No tests in archive
doCheck = false;
pythonImportsCheck = [ "sqlmap" ];
meta = with lib; {
description = "Automatic SQL injection and database takeover tool";
homepage = "https://sqlmap.org";
changelog = "https://github.com/sqlmapproject/sqlmap/releases/tag/${version}";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bennofs ];
mainProgram = "sqlmap";
};
}