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";
2019-12-10 18:07:42 +00:00
version = "1.3.12";
2017-08-25 09:22:30 +00:00
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:42 +00:00
sha256 = "3bad3275e2f29ffa54d4013a2ac2c77e87d01a1d745065d54ed5e60bc68dfbf0";
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 ];
};
}