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

25 lines
488 B
Nix
Raw Normal View History

2017-08-25 09:22:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2020-02-01 13:10:08 +00:00
version = "1.4";
2017-08-25 09:22:30 +00:00
src = fetchPypi {
inherit pname version;
2020-02-01 13:10:08 +00:00
sha256 = "0s6lgp66bn0l4a5mwxiv9h04sa7braqvjskns315lb93lyb4y092";
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 ];
};
}