Skip to content

Commit 63a139a

Browse files
authored
python312Packages.millheater: refactor
1 parent 45d7d8c commit 63a139a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pkgs/development/python-modules/millheater/default.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
buildPythonPackage,
66
fetchFromGitHub,
77
pythonOlder,
8+
setuptools,
89
}:
910

1011
buildPythonPackage rec {
1112
pname = "millheater";
1213
version = "0.12.0";
13-
format = "setuptools";
14+
pyproject = true;
1415

1516
disabled = pythonOlder "3.10";
1617

@@ -21,7 +22,9 @@ buildPythonPackage rec {
2122
hash = "sha256-8PrTypJuWNuFz1NZLuyqOpWFsN5OLshj7S10YgcGusQ=";
2223
};
2324

24-
propagatedBuildInputs = [
25+
build-system = [ setuptools ];
26+
27+
dependencies = [
2528
aiohttp
2629
async-timeout
2730
];

0 commit comments

Comments
 (0)