ef4442e827
See f63eb58573
The `requests2` attribute now throws an error informing that `requests`
should be used instead.
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, python2Packages, gettext }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "LinkChecker-${version}";
|
|
version = "9.3";
|
|
|
|
buildInputs = with python2Packages ; [ pytest ];
|
|
propagatedBuildInputs = with python2Packages ; [ requests ] ++ [ gettext ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/L/LinkChecker/${name}.tar.gz";
|
|
sha256 = "0v8pavf0bx33xnz1kwflv0r7lxxwj7vg3syxhy2wzza0wh6sc2pf";
|
|
};
|
|
|
|
# 1. upstream refuses to support ignoring robots.txt
|
|
# 2. work around requests version detection - can be dropped >v9.3
|
|
patches = [
|
|
./add-no-robots-flag.patch
|
|
./no-version-check.patch
|
|
];
|
|
|
|
postInstall = ''
|
|
rm $out/bin/linkchecker-gui
|
|
'';
|
|
|
|
checkPhase = ''
|
|
# the mime test fails for me...
|
|
rm tests/test_mimeutil.py
|
|
${lib.optionalString stdenv.isDarwin ''
|
|
# network tests fails on darwin
|
|
rm tests/test_network.py
|
|
''}
|
|
make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/logger/test_*.py"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Check websites for broken links";
|
|
homepage = "https://wummel.github.io/linkchecker/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
}
|