forked from mirrors/nixpkgs
pythonPackages.striprtf: init at 0.0.15
This commit is contained in:
parent
ccfe5ee60f
commit
ae3fc8b8d3
21
pkgs/development/python-modules/striprtf/default.nix
Normal file
21
pkgs/development/python-modules/striprtf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue