nixpkgs/pkgs/development/python-modules/sqlmap/default.nix
2018-05-10 10:09:14 +02:00

26 lines
534 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
version = "1.2.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "93fe37e535f4aabd05a7456295f39c0af73cbcd0511750663fc7a718c5915919";
};
# 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 ];
};
}