diff --git a/pkgs/development/python-modules/weblate-schemas/default.nix b/pkgs/development/python-modules/weblate-schemas/default.nix index 728612b8a103..1fff774c1715 100644 --- a/pkgs/development/python-modules/weblate-schemas/default.nix +++ b/pkgs/development/python-modules/weblate-schemas/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchPypi, + setuptools, fqdn, jsonschema, rfc3987, @@ -13,12 +14,16 @@ buildPythonPackage rec { pname = "weblate-schemas"; version = "2024.1"; + pyproject = true; + src = fetchPypi { pname = "weblate_schemas"; inherit version; hash = "sha256-nYPLD3VDO1Z97HI79J6Yjj3bWp1xKB79FWPCW146iz4="; }; + build-system = [ setuptools ]; + dependencies = [ fqdn jsonschema @@ -33,6 +38,7 @@ buildPythonPackage rec { meta = with lib; { description = "Schemas used by Weblate"; homepage = "https://github.com/WeblateOrg/weblate_schemas"; + changelog = "https://github.com/WeblateOrg/weblate_schemas/blob/${version}/CHANGES.rst"; license = licenses.mit; maintainers = with maintainers; [ erictapen ]; };