From 677109597e065c54c108570b46749e3a2b31a521 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 5 Dec 2025 15:37:56 +0100 Subject: [PATCH 1/2] python313Packages.mill-local: 0.4.0 -> 0.5.0 Diff: https://github.com/Danielhiversen/pyMillLocal/compare/0.4.0...0.5.0 Changelog: https://github.com/Danielhiversen/pyMillLocal/releases/tag/0.5.0 --- pkgs/development/python-modules/mill-local/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mill-local/default.nix b/pkgs/development/python-modules/mill-local/default.nix index e10f27161c3a..ea35d5ced97b 100644 --- a/pkgs/development/python-modules/mill-local/default.nix +++ b/pkgs/development/python-modules/mill-local/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "mill-local"; - version = "0.4.0"; + version = "0.5.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "Danielhiversen"; repo = "pyMillLocal"; tag = version; - hash = "sha256-WPL9vPK625gs3IO2XMFRCD+J6dQSxmEqg6FsX+2RLNk="; + hash = "sha256-t6nZ6KXX5GFIcdNIXyFxYtSjOuuUJmCekaBITNgcIkU="; }; propagatedBuildInputs = [ From 7e7c5fb79c97e767e50bf346a84ce4720f634040 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 5 Dec 2025 15:39:18 +0100 Subject: [PATCH 2/2] python313Packages.mill-local: modernize --- .../python-modules/mill-local/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/mill-local/default.nix b/pkgs/development/python-modules/mill-local/default.nix index ea35d5ced97b..2b298fa1f0a4 100644 --- a/pkgs/development/python-modules/mill-local/default.nix +++ b/pkgs/development/python-modules/mill-local/default.nix @@ -4,15 +4,13 @@ async-timeout, buildPythonPackage, fetchFromGitHub, - pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "mill-local"; version = "0.5.0"; - format = "setuptools"; - - disabled = pythonOlder "3.8"; + pyproject = true; src = fetchFromGitHub { owner = "Danielhiversen"; @@ -21,7 +19,9 @@ buildPythonPackage rec { hash = "sha256-t6nZ6KXX5GFIcdNIXyFxYtSjOuuUJmCekaBITNgcIkU="; }; - propagatedBuildInputs = [ + buildInputs = [ setuptools ]; + + dependencies = [ aiohttp async-timeout ]; @@ -34,8 +34,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to communicate locally with Mill heaters"; homepage = "https://github.com/Danielhiversen/pyMillLocal"; - changelog = "https://github.com/Danielhiversen/pyMillLocal/releases/tag/${version}"; - license = with licenses; [ mit ]; + changelog = "https://github.com/Danielhiversen/pyMillLocal/releases/tag/${src.tag}"; + license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }