parsero: init at 0.81

This commit is contained in:
Emily Trau 2022-08-03 16:17:19 +10:00
parent 438b4d6408
commit 932204d39f
2 changed files with 30 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -20543,6 +20543,8 @@ with pkgs;
paperkey = callPackage ../tools/security/paperkey { };
parsero = callPackage ../tools/security/parsero { };
pcaudiolib = callPackage ../development/libraries/pcaudiolib { };
pcg_c = callPackage ../development/libraries/pcg-c { };