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

26 lines
535 B
Nix
Raw Normal View History

2017-08-25 11:22:30 +02:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2017-10-25 20:04:35 +02:00
version = "1.1.10";
2017-08-25 11:22:30 +02:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 20:04:35 +02:00
sha256 = "90db96664955c6a576b495c973bd3976b9d4eaffaea205c0343ac7e8f8147cbe";
2017-08-25 11:22:30 +02: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 ];
};
}