Loading pkgs/by-name/sq/sqlmc/package.nix 0 → 100644 +45 −0 Original line number Diff line number Diff line { lib, python3, fetchFromGitHub, }: python3.pkgs.buildPythonApplication rec { pname = "sqlmc"; version = "1.0.0"; pyproject = true; src = fetchFromGitHub { owner = "malvads"; repo = "sqlmc"; rev = "refs/tags/${version}"; hash = "sha256-VJSOOCFqDPTh7PoumAQqt+tdR05uGe/xTwxcJAAe//k="; }; nativeBuildInputs = with python3.pkgs; [ setuptools ]; propagatedBuildInputs = with python3.pkgs; [ aiohttp aiosignal attrs beautifulsoup4 frozenlist idna multidict pyfiglet soupsieve tabulate yarl ]; pythonImportsCheck = [ "sqlmc" ]; meta = with lib; { description = "Tool to check URLs of a domain for SQL injections"; homepage = "https://github.com/malvads/sqlmc"; changelog = "https://github.com/malvads/sqlmc/releases/tag/${version}"; license = licenses.agpl3Only; maintainers = with maintainers; [ fab ]; mainProgram = "sqlmc"; }; } Loading
pkgs/by-name/sq/sqlmc/package.nix 0 → 100644 +45 −0 Original line number Diff line number Diff line { lib, python3, fetchFromGitHub, }: python3.pkgs.buildPythonApplication rec { pname = "sqlmc"; version = "1.0.0"; pyproject = true; src = fetchFromGitHub { owner = "malvads"; repo = "sqlmc"; rev = "refs/tags/${version}"; hash = "sha256-VJSOOCFqDPTh7PoumAQqt+tdR05uGe/xTwxcJAAe//k="; }; nativeBuildInputs = with python3.pkgs; [ setuptools ]; propagatedBuildInputs = with python3.pkgs; [ aiohttp aiosignal attrs beautifulsoup4 frozenlist idna multidict pyfiglet soupsieve tabulate yarl ]; pythonImportsCheck = [ "sqlmc" ]; meta = with lib; { description = "Tool to check URLs of a domain for SQL injections"; homepage = "https://github.com/malvads/sqlmc"; changelog = "https://github.com/malvads/sqlmc/releases/tag/${version}"; license = licenses.agpl3Only; maintainers = with maintainers; [ fab ]; mainProgram = "sqlmc"; }; }