diff --git a/pkgs/development/python-modules/flufl/i18n.nix b/pkgs/development/python-modules/flufl/i18n.nix index 487502cd61b1..541abe453a0e 100644 --- a/pkgs/development/python-modules/flufl/i18n.nix +++ b/pkgs/development/python-modules/flufl/i18n.nix @@ -1,4 +1,6 @@ -{ buildPythonPackage, fetchPypi +{ lib +, buildPythonPackage +, fetchPypi , atpublic , pdm-pep517 }: @@ -19,4 +21,12 @@ buildPythonPackage rec { inherit pname version; sha256 = "sha256-wKz6aggkJ9YBJ+o75XjC4Ddnn+Zi9hlYDnliwTc7DNs="; }; + + meta = with lib; { + description = "A 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; [ ]; + }; }