mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
python312Packages.rtfde: fix build (#351110)
This commit is contained in:
commit
193adc7e11
@ -26,6 +26,8 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonRelaxDeps = [ "lark" ];
|
||||
|
||||
dependencies = [
|
||||
lark
|
||||
oletools
|
||||
@ -39,15 +41,15 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "RTFDE" ];
|
||||
|
||||
disabledTests = [
|
||||
# Content mismatch
|
||||
"test_bin_data_captured"
|
||||
# Malformed encapsulated RTF discovered
|
||||
"test_encoded_bytes_stay_encoded_character"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
changelog = "https://github.com/seamustuohy/RTFDE/releases/tag/${version}";
|
||||
description = "Library for extracting encapsulated HTML and plain text content from the RTF bodies";
|
||||
homepage = "https://github.com/seamustuohy/RTFDE";
|
||||
changelog = "https://github.com/seamustuohy/RTFDE/releases/tag/${version}";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
license = lib.licenses.lgpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user