depot/pkgs/tools/security/parsero/default.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

29 lines
714 B
Nix

{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "parsero";
version = "0.81";
src = fetchFromGitHub {
owner = "behindthefirewalls";
repo = pname;
rev = "e5b585a19b79426975a825cafa4cc8a353cd267e";
sha256 = "rqupeJxslL3AfQ+CzBWRb4ZS32VoYd8hlA+eACMKGPY=";
};
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
urllib3
];
# Project has no tests
doCheck = false;
meta = with lib; {
description = "Robots.txt audit tool";
homepage = "https://github.com/behindthefirewalls/Parsero";
license = licenses.gpl2Only;
maintainers = with maintainers; [ emilytrau fab ];
mainProgram = "parsero";
};
}