3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #117148 from fabaff/bump-sqlmap

sqlmap: 1.4.12 -> 1.5.3
This commit is contained in:
Sandro 2021-03-21 23:10:52 +01:00 committed by GitHub
commit a5ccac8fd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, file
, stdenv
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.4.12";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "166adazdrv92azx4p0qng0cm3va6i301vfsr4yyf0azj3sdg0waj";
sha256 = "sha256-b2Q5Zelz0AWbNQotOLWdwN5+20Q5jATH3nzLEJQRwno=";
};
postPatch = ''
@ -29,9 +29,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "sqlmap" ];
meta = with lib; {
homepage = "http://sqlmap.org";
license = licenses.gpl2;
description = "Automatic SQL injection and database takeover tool";
homepage = "http://sqlmap.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bennofs ];
};
}