python3Packages.weblate-schemas: use pyroject = true

This commit is contained in:
Kerstin Humm
2024-09-04 12:54:31 +02:00
committed by Valentin Gagarin
parent b7eb8503d5
commit 084a337c53
@@ -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 ];
};