python313Packages.tnefparse: init at 1.4.0

This commit is contained in:
Florian Klink
2025-03-31 23:49:13 +01:00
parent 3eeaa42ef4
commit 365f29bf5f
2 changed files with 58 additions and 0 deletions
@@ -0,0 +1,56 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
compressed-rtf,
pytestCheckHook,
pytest-console-scripts,
}:
buildPythonPackage rec {
pname = "tnefparse";
version = "1.4.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "koodaamo";
repo = "tnefparse";
tag = version;
hash = "sha256-t2ouuuy6fzwb6SZNpxeGSleL/11SgTT8Ce28/ST1glw=";
};
optional-dependencies = {
compressed-rtf = [ compressed-rtf ];
};
nativeCheckInputs = [
pytestCheckHook
pytest-console-scripts
# tests always require this.
compressed-rtf
];
disabledTests = [
# ensures there's a "optional argument" in the CLI usage, and its output has changed since.
"test_help_is_printed"
];
pythonImportsCheck = [ "tnefparse" ];
meta = {
description = "TNEF decoding library written in python, without external dependencies";
homepage = "https://github.com/koodaamo/tnefparse";
changelog = "https://github.com/koodaamo/tnefparse/releases/tag/${version}";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [
flokli
];
};
}
+2
View File
@@ -17191,6 +17191,8 @@ self: super: with self; {
tmb = callPackage ../development/python-modules/tmb { };
tnefparse = callPackage ../development/python-modules/tnefparse { };
todoist = callPackage ../development/python-modules/todoist { };
todoist-api-python = callPackage ../development/python-modules/todoist-api-python { };