From 067013dfd7ce25be4ffa591970811ac6a19a7d9a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 3 Dec 2023 00:03:32 +0100 Subject: [PATCH] python311Packages.zeroconf: 0.119.0 -> 0.128.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.120.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.121.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.122.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.122.1 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.122.2 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.122.3 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.123.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.124.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.125.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.126.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.127.0 https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.128.0 --- .../python-modules/zeroconf/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/zeroconf/default.nix b/pkgs/development/python-modules/zeroconf/default.nix index 7c2cf10e5daf..5f6b412f4e87 100644 --- a/pkgs/development/python-modules/zeroconf/default.nix +++ b/pkgs/development/python-modules/zeroconf/default.nix @@ -1,6 +1,5 @@ { lib -, stdenv -, cython +, cython_3 , async-timeout , buildPythonPackage , fetchFromGitHub @@ -15,7 +14,7 @@ buildPythonPackage rec { pname = "zeroconf"; - version = "0.119.0"; + version = "0.128.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,11 +23,16 @@ buildPythonPackage rec { owner = "jstasiak"; repo = "python-zeroconf"; rev = "refs/tags/${version}"; - hash = "sha256-VaqKk2WrRLZM2tfx3+y9GngEc6rMcw0b12ExFVfDYf4="; + hash = "sha256-44Ibjbimpl+KSnQ2QMwVg79F38gdWPYTR/ZRyW7JHEU="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace "Cython>=3.0.5" "Cython" + ''; + nativeBuildInputs = [ - cython + cython_3 poetry-core setuptools ];