Skip to content

Commit

Permalink
python312Packages.rtfde: fix build (#351110)
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol authored Oct 26, 2024
2 parents 2d6a969 + bfd007c commit 193adc7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/rtfde/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ buildPythonPackage rec {

build-system = [ setuptools ];

pythonRelaxDeps = [ "lark" ];

dependencies = [
lark
oletools
Expand All @@ -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 ];
};
}

0 comments on commit 193adc7

Please sign in to comment.