about summary refs log tree commit diff
path: root/pkgs/tools/security/parsero/default.nix
blob: a8cd9c39eb134aa00846ded54c67a8d2c5ccef2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 ];
  };
}