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