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

26 lines
535 B
Nix
Raw Normal View History

2017-08-25 10:22:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2017-11-05 12:16:18 +00:00
version = "1.1.11";
2017-08-25 10:22:30 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-05 12:16:18 +00:00
sha256 = "bb5297df9cd97316b3c7ca64f8e31cae5cc6b94c015afd84c546877f1f77d6e4";
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 ];
};
}