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-11-04 10:35:18 +00:00
version = "1.2.11";
2017-08-25 09:22:30 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:18 +00:00
sha256 = "8715529e823c6f4ed701d71f1daf8525583ed04b44e8c89d6781475c856eb2ba";
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 ];
};
}