diff options
Diffstat (limited to 'pkgs/development/python-modules/flufl/i18n.nix')
-rw-r--r-- | pkgs/development/python-modules/flufl/i18n.nix | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/flufl/i18n.nix b/pkgs/development/python-modules/flufl/i18n.nix index bd5bcb62fe6c..3a7295e0a087 100644 --- a/pkgs/development/python-modules/flufl/i18n.nix +++ b/pkgs/development/python-modules/flufl/i18n.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder -, atpublic -, pdm-pep517 -, pytestCheckHook -, sybil +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, + atpublic, + pdm-pep517, + pytestCheckHook, + sybil, }: buildPythonPackage rec { @@ -37,15 +38,13 @@ buildPythonPackage rec { sybil ]; - pythonNamespaces = [ - "flufl" - ]; + pythonNamespaces = [ "flufl" ]; meta = with lib; { - description = "A high level API for internationalizing Python libraries and applications"; + description = "High level API for internationalizing Python libraries and applications"; homepage = "https://gitlab.com/warsaw/flufl.i18n"; changelog = "https://gitlab.com/warsaw/flufl.i18n/-/raw/${version}/docs/NEWS.rst"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |