Skip to content

Commit d3cba66

Browse files
authored
python312Packages.millheater: 0.11.8 -> 0.12.0 (#354797)
2 parents 4af121e + 63a139a commit d3cba66

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,26 @@
55
buildPythonPackage,
66
fetchFromGitHub,
77
pythonOlder,
8+
setuptools,
89
}:
910

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

1516
disabled = pythonOlder "3.10";
1617

1718
src = fetchFromGitHub {
1819
owner = "Danielhiversen";
1920
repo = "pymill";
2021
rev = "refs/tags/${version}";
21-
hash = "sha256-BSrnUhe6SFtalUGldC24eJTqJAF5FdUWo3rwWNT1uCw=";
22+
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)