python.pkgs.sqlmap: 1.0.11 -> 1.1.18

This commit is contained in:
Frederik Rietdijk 2017-08-25 11:22:30 +02:00
parent f6eb190e70
commit 7a6b150f94
2 changed files with 26 additions and 15 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.1.8";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "f8f88fc7fe0ba81a7558902f87df31c052e27404caa26a160174747afcaebe49";
};
# 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 ];
};
}

View File

@ -21328,21 +21328,7 @@ 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 ];
};
};
sqlmap = callPackage ../development/python-modules/sqlmap { };
pgpdump = self.buildPythonPackage rec {
name = "pgpdump-1.5";