pythonPackages.docx2txt: init at 0.8

This commit is contained in:
ilkecan 2022-03-15 23:31:56 +00:00
parent cec02f3516
commit ef3ae80d60
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "docx2txt";
version = "0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LAbZjXz+LTlH5XYKV9kk4/8HdFs3nIc3cjki5wCSNuU=";
};
pythonImportsCheck = [
"docx2txt"
];
meta = with lib; {
description = "A pure python-based utility to extract text and images from docx files";
homepage = "https://github.com/ankushshah89/python-docx2txt";
license = licenses.mit;
maintainers = with maintainers; [ ilkecan ];
};
}

View file

@ -2428,6 +2428,8 @@ in {
docx2python = callPackage ../development/python-modules/docx2python { };
docx2txt = callPackage ../development/python-modules/docx2txt { };
dodgy = callPackage ../development/python-modules/dodgy { };
dogpile-cache = callPackage ../development/python-modules/dogpile-cache { };