From 63a139ae1c3c96e25474ec0eb3c44cd84360db0b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 9 Nov 2024 22:16:28 +0100 Subject: [PATCH] python312Packages.millheater: refactor --- pkgs/development/python-modules/millheater/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/millheater/default.nix b/pkgs/development/python-modules/millheater/default.nix index a63e3751996c..7aedc6cd2155 100644 --- a/pkgs/development/python-modules/millheater/default.nix +++ b/pkgs/development/python-modules/millheater/default.nix @@ -5,12 +5,13 @@ buildPythonPackage, fetchFromGitHub, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "millheater"; version = "0.12.0"; - format = "setuptools"; + pyproject = true; disabled = pythonOlder "3.10"; @@ -21,7 +22,9 @@ buildPythonPackage rec { hash = "sha256-8PrTypJuWNuFz1NZLuyqOpWFsN5OLshj7S10YgcGusQ="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ aiohttp async-timeout ];