depot/third_party/nixpkgs/pkgs/tools/networking/linkchecker/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

62 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, python3
, gettext
}:
python3.pkgs.buildPythonApplication rec {
pname = "linkchecker";
version = "10.2.1";
format = "pyproject";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-z7Qp74cai8GfsxB4n9dSCWQepp0/4PimFiRJQBaVSoo=";
};
nativeBuildInputs = [
gettext
];
propagatedBuildInputs = with python3.pkgs; [
argcomplete
beautifulsoup4
configargparse
dnspython
hatch-vcs
hatchling
pyopenssl
requests
];
nativeCheckInputs = with python3.pkgs; [
parameterized
pytestCheckHook
];
disabledTests = [
# test_timeit2 is flakey, and depends sleep being precise to the milisecond
"TestLoginUrl"
"test_timeit2"
];
disabledTestPaths = [
"tests/checker/telnetserver.py"
"tests/checker/test_telnet.py"
] ++ lib.optionals stdenv.isDarwin [
"tests/checker/test_content_allows_robots.py"
"tests/checker/test_http*.py"
"tests/test_network.py"
];
meta = with lib; {
description = "Check websites for broken links";
homepage = "https://linkcheck.github.io/linkchecker/";
changelog = "https://github.com/linkchecker/linkchecker/releases/tag/v${version}";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peterhoeg tweber ];
};
}