From e8e3cfdcb3ef8fadb224e1de9dd8bf8ccf241d19 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Sep 2024 09:55:54 +0200 Subject: [PATCH] python312Packages.aioairzone: refactor --- pkgs/development/python-modules/aioairzone/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/aioairzone/default.nix b/pkgs/development/python-modules/aioairzone/default.nix index 06052e7eb72c..ba74e667dee2 100644 --- a/pkgs/development/python-modules/aioairzone/default.nix +++ b/pkgs/development/python-modules/aioairzone/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { hash = "sha256-32fd4+y3EICVesrtSZUf/jYUEIqvPPnSp4hrpgXZoxU="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ aiohttp ]; + dependencies = [ aiohttp ]; # Module has no tests doCheck = false; @@ -34,7 +34,7 @@ buildPythonPackage rec { description = "Module to control AirZone devices"; homepage = "https://github.com/Noltari/aioairzone"; changelog = "https://github.com/Noltari/aioairzone/releases/tag/${version}"; - license = with licenses; [ asl20 ]; + license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }