3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.striprtf: init at 0.0.15

This commit is contained in:
Aaron Andersen 2021-10-28 12:30:18 -04:00
parent ccfe5ee60f
commit ae3fc8b8d3
2 changed files with 23 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -8777,6 +8777,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 { };