bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
babel,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
langcodes,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
tld,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "courlan";
|
|
version = "1.2.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DLycrIOXDGUbk3p4I6XZLL67a2AUVOoPtstNDuXRhF0=";
|
|
};
|
|
|
|
# Tests try to write to /tmp directly. use $TMPDIR instead.
|
|
postPatch = ''
|
|
substituteInPlace tests/unit_tests.py \
|
|
--replace-fail "\"courlan --help\"" "\"$out/bin/courlan --help\"" \
|
|
--replace-fail "courlan_bin = \"courlan\"" "courlan_bin = \"$out/bin/courlan\"" \
|
|
--replace-fail "/tmp" "$TMPDIR"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
babel
|
|
langcodes
|
|
tld
|
|
urllib3
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# disable tests that require an internet connection
|
|
disabledTests = [ "test_urlcheck" ];
|
|
|
|
pythonImportsCheck = [ "courlan" ];
|
|
|
|
meta = with lib; {
|
|
description = "Clean, filter and sample URLs to optimize data collection";
|
|
homepage = "https://github.com/adbar/courlan";
|
|
changelog = "https://github.com/adbar/courlan/blob/v${version}/HISTORY.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jokatzke ];
|
|
mainProgram = "courlan";
|
|
};
|
|
}
|