Files
nixpkgs/pkgs/development/python-modules/mammoth/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

58 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
cobble,
funk,
pytestCheckHook,
spur,
tempman,
gitUpdater,
}:
buildPythonPackage rec {
pname = "mammoth";
version = "1.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mwilliamson";
repo = "python-mammoth";
tag = version;
hash = "sha256-x1wSudTD/C1uHnudaCCrhi9fyQInCej+Kd7CyBI2sus=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail 'read("README")' '""'
'';
build-system = [ setuptools ];
dependencies = [ cobble ];
pythonImportsCheck = [ "mammoth" ];
nativeCheckInputs = [
funk
pytestCheckHook
spur
tempman
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
passthru.updateScripts = gitUpdater { };
meta = {
description = "Convert Word documents (.docx files) to HTML";
homepage = "https://github.com/mwilliamson/python-mammoth";
changelog = "https://github.com/mwilliamson/python-mammoth/blob/${src.tag}/NEWS";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}