python.pkgs.sqlmap: 1.0.11 -> 1.1.18
This commit is contained in:
parent
f6eb190e70
commit
7a6b150f94
25
pkgs/development/python-modules/sqlmap/default.nix
Normal file
25
pkgs/development/python-modules/sqlmap/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user