nixpkgs/pkgs/development/python-modules/sqlmap/default.nix
2019-01-18 09:37:10 +01:00

25 lines
503 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.2.12";
src = fetchPypi {
inherit pname version;
sha256 = "7a099f42358731589851c38e5a90d997490dd6275b39e09f21bdd4df91a24413";
};
# 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 ];
};
}