1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

sqlmap: init at 1.0.9.post5

This commit is contained in:
Benno Fünfstück 2016-10-01 15:14:34 +02:00
parent f2f7420e2b
commit 19c6da2869

View file

@ -22548,6 +22548,24 @@ in modules // {
};
};
sqlmap = buildPythonPackage {
name = "sqlmap-1.0.9.post5";
src = pkgs.fetchurl {
url = "mirror://pypi/s/sqlmap/sqlmap-1.0.9.post5.tar.gz";
sha256 = "0g8sjky8anrmcisc697b5qndp88qmay35kng9sz9x46wd3agm9pa";
};
propagatedBuildInputs = with self; [ modules.sqlite3 ];
meta = with pkgs.stdenv.lib; {
homepage = "http://sqlmap.org";
license = licenses.gpl2;
description = "Automatic SQL injection and database takeover tool";
maintainers = with stdenv.lib.maintainers; [ sqlmap ];
};
};
pgpdump = self.buildPythonPackage rec {
name = "pgpdump-1.5";