depot/pkgs/by-name/sq/sqlmc/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

45 lines
943 B
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "sqlmc";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "malvads";
repo = "sqlmc";
rev = "refs/tags/${version}";
hash = "sha256-8p+9A1j+J3WItc1u8kG7LHY086kcwMGhEMENym2p/Fo=";
};
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";
};
}