Merge pull request #207529 from r-ryantm/auto-update/python3.9-striprtf

python39Packages.striprtf: 0.0.21 -> 0.0.22
This commit is contained in:
Jonas Heinrich 2022-12-24 23:19:09 +01:00 committed by GitHub
commit f6c227b937
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,19 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "striprtf";
version = "0.0.21";
version = "0.0.22";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/wqYbdJ+OI/RTODnKB34e7zADHzCPEX0LkTausqFNtY=";
hash = "sha256-T7rb6EJPQStbJjv3L7PA2rTdtXTWCd1NCE9uK4sEQCs=";
};
pythonImportsCheck = [
@ -18,6 +21,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/joshy/striprtf/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/joshy/striprtf";
description = "A simple library to convert rtf to text";
maintainers = with maintainers; [ aanderse ];