24 lines
502 B
Nix
24 lines
502 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sqlmap";
|
|
version = "1.2.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9e570fcac05b3231d5e01398e496b88a78601938bba228e381994a1b3fe3bd88";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://sqlmap.org";
|
|
license = licenses.gpl2;
|
|
description = "Automatic SQL injection and database takeover tool";
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|