nixpkgs/pkgs/development/python-modules/sqlmap/default.nix

25 lines
502 B
Nix
Raw Normal View History

2017-08-25 11:22:30 +02:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2019-05-30 08:49:53 +02:00
version = "1.3.5";
2017-08-25 11:22:30 +02:00
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:53 +02:00
sha256 = "84e0da1a3d846df2f7c886540828f374b357924207e915c8885e0472acdf68dd";
2017-08-25 11:22:30 +02:00
};
# 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 ];
};
}