mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
parsero: init at 0.81
This commit is contained in:
parent
438b4d6408
commit
932204d39f
28
pkgs/tools/security/parsero/default.nix
Normal file
28
pkgs/tools/security/parsero/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user