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

25 lines
503 B
Nix
Raw Normal View History

2017-08-25 09:22:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2018-10-06 10:56:20 +00:00
version = "1.2.10";
2017-08-25 09:22:30 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:20 +00:00
sha256 = "e64efce7f3b50cab02c8da968e00c1b456f59aff193d3dae2446d7c117723d53";
2017-08-25 09:22:30 +00: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 ];
};
}