sqlmap: 1.4.12 -> 1.5.3

This commit is contained in:
Fabian Affolter 2021-03-21 22:46:11 +01:00
parent 718ff92292
commit c37afee555
1 changed files with 5 additions and 5 deletions

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 ];
};
}