Merge pull request #184952 from emilytrau/parsero

parsero: init at 0.81
This commit is contained in:
Fabian Affolter 2022-08-03 21:24:34 +02:00 committed by GitHub
commit c40ddd7737
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -20526,6 +20526,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 { };