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

26 lines
534 B
Nix
Raw Normal View History

2017-08-25 09:22:30 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2018-06-12 16:47:07 +00:00
version = "1.2.6";
2017-08-25 09:22:30 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:07 +00:00
sha256 = "a3649f9b5219b7336b82d3a1bf6e91c8d649171b96747b927a92ac075947d619";
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 ];
};
}