Martin Weinelt a628335058
python3Packages.striprtf: 0.0.28 -> 0.0.29
https://github.com/joshy/striprtf/blob/v0.0.29/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2025-04-03 23:13:08 +02:00

34 lines
732 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
pythonOlder,
}:
buildPythonPackage rec {
pname = "striprtf";
version = "0.0.29";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-WoItB14XQXk07Trdb8ebX8j7VE/kNwsviUzdKPDd144=";
};
build-system = [ hatchling ];
pythonImportsCheck = [ "striprtf" ];
meta = with lib; {
changelog = "https://github.com/joshy/striprtf/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/joshy/striprtf";
description = "Simple library to convert rtf to text";
mainProgram = "striprtf";
maintainers = with maintainers; [ aanderse ];
license = with licenses; [ bsd3 ];
};
}