Merge pull request #143418 from aanderse/striprtf

pythonPackages.striprtf: init at 0.0.15
This commit is contained in:
Aaron Andersen
2021-10-29 14:17:22 -04:00
committed by GitHub
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "striprtf";
version = "0.0.15";
src = fetchPypi {
inherit pname version;
sha256 = "1yvgnmds034z28mscff0amm0g47ni0753nshvrq2swdpipymiwz0";
};
meta = with lib; {
homepage = "https://github.com/joshy/striprtf";
description = "A simple library to convert rtf to text";
maintainers = with maintainers; [ aanderse ];
license = with licenses; [ bsd3 ];
};
}
+2
View File
@@ -8878,6 +8878,8 @@ in {
stripe = callPackage ../development/python-modules/stripe { };
striprtf = callPackage ../development/python-modules/striprtf { };
structlog = callPackage ../development/python-modules/structlog { };
stumpy = callPackage ../development/python-modules/stumpy { };