Files
nixpkgs/pkgs/development/python-modules/docx2txt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
590 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "docx2txt";
version = "0.9";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-GAE/YimxSQkCixmqe/T489bkYy17CJqyn38KTR9mDig=";
};
pythonImportsCheck = [ "docx2txt" ];
meta = with lib; {
description = "Pure python-based utility to extract text and images from docx files";
mainProgram = "docx2txt";
homepage = "https://github.com/ankushshah89/python-docx2txt";
license = licenses.mit;
maintainers = with maintainers; [ ilkecan ];
};
}