diff options
Diffstat (limited to 'pkgs/development/python-modules/markuppy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/markuppy/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/markuppy/default.nix b/pkgs/development/python-modules/markuppy/default.nix index fde9ae4ceec9..4b376f6894ec 100644 --- a/pkgs/development/python-modules/markuppy/default.nix +++ b/pkgs/development/python-modules/markuppy/default.nix @@ -1,4 +1,8 @@ -{ lib, fetchPypi, buildPythonPackage }: +{ + lib, + fetchPypi, + buildPythonPackage, +}: buildPythonPackage rec { pname = "markuppy"; @@ -17,7 +21,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "MarkupPy" ]; meta = with lib; { - description = "An HTML/XML generator"; + description = "HTML/XML generator"; homepage = "https://github.com/tylerbakke/MarkupPy"; license = licenses.mit; maintainers = with maintainers; [ sephi ]; |