1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #330816 from jokatzke/update-trafilatura

python312Packages.trafilatura: 1.10.0 -> 1.12.0
This commit is contained in:
Fabian Affolter 2024-08-08 09:34:11 +02:00 committed by GitHub
commit a6009cd126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "trafilatura";
version = "1.10.0";
version = "1.12.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-exBXPi3Ra2cC9W9WhYsl80/4HWsW5CmvCjsmbwdGru4=";
hash = "sha256-F9IHTs/ixWK/CGPefoOfrRTMZtX5gJB0HqqRjqv7+dU=";
};
# Patch out gui cli because it is not supported in this packaging and
@ -32,7 +32,8 @@ buildPythonPackage rec {
substituteInPlace setup.py \
--replace-fail '"trafilatura_gui=trafilatura.gui:main",' ""
substituteInPlace tests/cli_tests.py \
--replace-fail "trafilatura_bin = 'trafilatura'" "trafilatura_bin = '$out/bin/trafilatura'"
--replace-fail 'trafilatura_bin = "trafilatura"' \
'trafilatura_bin = "${placeholder "out"}/bin/trafilatura"'
'';
build-system = [ setuptools ];
@ -60,16 +61,17 @@ buildPythonPackage rec {
"test_queue"
"test_redirection"
"test_whole"
"test_is_live_page"
];
pythonImportsCheck = [ "trafilatura" ];
meta = with lib; {
meta = {
description = "Python package and command-line tool designed to gather text on the Web";
homepage = "https://trafilatura.readthedocs.io";
changelog = "https://github.com/adbar/trafilatura/blob/v${version}/HISTORY.md";
license = licenses.asl20;
maintainers = with maintainers; [ jokatzke ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jokatzke ];
mainProgram = "trafilatura";
};
}