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