sqlmap: 1.0.11 -> 1.1

Additionally disable sqlmap for python3 as it is incompatible:
"[CRITICAL] incompatible Python version detected ('3.6.1'). For successfully running sqlmap you'll have to use version 2.6 or 2.7 (visit 'http://www.python.org/download/')"
This commit is contained in:
Tristan Helmich 2017-08-16 14:34:14 +02:00 committed by Tristan Helmich
parent 47ec1bcb8c
commit e573c4ad90
3 changed files with 21 additions and 16 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, pythonPackages, pkgs }:
pythonPackages.buildPythonPackage {
name = "sqlmap-1.1";
disabled = pythonPackages.isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/s/sqlmap/sqlmap-1.1.tar.gz";
sha256 = "0px72p52w76cylr68i69kz0kagmbrslgx2221yi77322fih0mngi";
};
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; [ bennofs ];
};
}

View file

@ -4281,6 +4281,8 @@ with pkgs;
sqliteman = callPackage ../applications/misc/sqliteman { };
sqlmap = callPackage ../applications/misc/sqlmap { };
stdman = callPackage ../data/documentation/stdman { };
storebrowse = callPackage ../tools/system/storebrowse { };

View file

@ -21393,22 +21393,6 @@ in {
};
};
sqlmap = buildPythonPackage {
name = "sqlmap-1.0.11";
src = pkgs.fetchurl {
url = "mirror://pypi/s/sqlmap/sqlmap-1.0.11.tar.gz";
sha256 = "1x4amyjqnd9j5g2kp9nvg8pr5sqzbhr8gd0m6d671bshvgj568vr";
};
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; [ bennofs ];
};
};
pgpdump = self.buildPythonPackage rec {
name = "pgpdump-1.5";