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

25 lines
502 B
Nix
Raw Normal View History

2017-08-25 10:22:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2019-02-14 07:37:30 +00:00
version = "1.3.2";
2017-08-25 10:22:30 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:30 +00:00
sha256 = "1010623c4c31413fdfdd8b3fe194ab95dfabde1081f3c707d1b2eb56b044a7da";
2017-08-25 10:22:30 +01: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 ];
};
}