nixpkgs/pkgs/tools/networking/linkchecker/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

64 lines
1.4 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";
mainProgram = "linkchecker";
homepage = "https://linkcheck.github.io/linkchecker/";
changelog = "https://github.com/linkchecker/linkchecker/releases/tag/v${version}";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peterhoeg tweber ];
};
}