Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 502 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "sqlmap"; 8 version = "1.3.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1010623c4c31413fdfdd8b3fe194ab95dfabde1081f3c707d1b2eb56b044a7da"; 13 }; 14 15 # No tests in archive 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "http://sqlmap.org"; 20 license = licenses.gpl2; 21 description = "Automatic SQL injection and database takeover tool"; 22 maintainers = with maintainers; [ bennofs ]; 23 }; 24}