diff options
Diffstat (limited to 'pkgs/development/python-modules/python-pptx/default.nix')
-rw-r--r-- | pkgs/development/python-modules/python-pptx/default.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/python-pptx/default.nix b/pkgs/development/python-modules/python-pptx/default.nix index b18a5606f66b..92ff6ce7857e 100644 --- a/pkgs/development/python-modules/python-pptx/default.nix +++ b/pkgs/development/python-modules/python-pptx/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchPypi -, lxml -, xlsxwriter -, pillow +{ + lib, + buildPythonPackage, + fetchPypi, + lxml, + xlsxwriter, + pillow, }: buildPythonPackage rec { pname = "python-pptx"; @@ -34,6 +35,6 @@ buildPythonPackage rec { homepage = "https://github.com/scanny/python-pptx"; description = "Create Open XML PowerPoint documents in Python"; license = licenses.mit; - maintainers = with maintainers; [happysalada]; + maintainers = with maintainers; [ happysalada ]; }; } |