504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
39 lines
895 B
Nix
39 lines
895 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, lxml
|
|
, xlsxwriter
|
|
, pillow
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "python-pptx";
|
|
version = "0.6.23";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WHSX/yjneasY27B09tQFKJPIXe3JXtdd8xk2TzMf7e4=";
|
|
};
|
|
|
|
# postPatch = ''
|
|
# substituteInPlace setup.py \
|
|
# --replace "grpcio-tools>=1.47.0, <=1.48.0" "grpcio-tools>=1.47.0, <=1.52.0" \
|
|
# --replace "grpcio>=1.47.0,<=1.48.0" "grpcio>=1.47.0,<=1.53.0" \
|
|
# --replace "ujson>=2.0.0,<=5.4.0" "ujson>=2.0.0,<=5.7.0"
|
|
# '';
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
xlsxwriter
|
|
pillow
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/scanny/python-pptx";
|
|
description = "Create Open XML PowerPoint documents in Python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [happysalada];
|
|
};
|
|
}
|