From 932204d39fea4fc58947d8e2eee8194776f55e14 Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Wed, 3 Aug 2022 16:17:19 +1000 Subject: parsero: init at 0.81 --- pkgs/tools/security/parsero/default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/tools/security/parsero/default.nix (limited to 'pkgs/tools/security/parsero') diff --git a/pkgs/tools/security/parsero/default.nix b/pkgs/tools/security/parsero/default.nix new file mode 100644 index 0000000000000..a8cd9c39eb134 --- /dev/null +++ b/pkgs/tools/security/parsero/default.nix @@ -0,0 +1,28 @@ +{ 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 ]; + }; +} -- cgit 1.4.1