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

26 lines
534 B
Nix
Raw Normal View History

2017-08-25 10:22:30 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sqlmap";
2018-05-09 15:50:56 +01:00
version = "1.2.5";
2017-08-25 10:22:30 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-05-09 15:50:56 +01:00
sha256 = "93fe37e535f4aabd05a7456295f39c0af73cbcd0511750663fc7a718c5915919";
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 ];
};
}