diff options
Diffstat (limited to 'pkgs/development/python-modules/pypandoc/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pypandoc/default.nix | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/pypandoc/default.nix b/pkgs/development/python-modules/pypandoc/default.nix index 7501cddbad18..727545b7148d 100644 --- a/pkgs/development/python-modules/pypandoc/default.nix +++ b/pkgs/development/python-modules/pypandoc/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pandoc -, pandocfilters -, poetry-core -, pythonOlder -, substituteAll -, texliveSmall +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pandoc, + pandocfilters, + poetry-core, + pythonOlder, + substituteAll, + texliveSmall, }: buildPythonPackage rec { @@ -32,23 +33,22 @@ buildPythonPackage rec { ./skip-tests.patch ]; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; nativeCheckInputs = [ texliveSmall pandocfilters ]; - pythonImportsCheck = [ - "pypandoc" - ]; + pythonImportsCheck = [ "pypandoc" ]; meta = with lib; { description = "Thin wrapper for pandoc"; homepage = "https://github.com/JessicaTegner/pypandoc"; license = licenses.mit; - maintainers = with maintainers; [ sternenseemann bennofs ]; + maintainers = with maintainers; [ + sternenseemann + bennofs + ]; }; } |