Unverified Commit c40ddd77 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #184952 from emilytrau/parsero

parsero: init at 0.81
parents 6290c77b 932204d3
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };