From 077b5ac91a79537d21d61decfbd9f46198993f13 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 13 May 2023 23:50:38 +0200 Subject: [PATCH] python310Packages.aiolifx-themes: relax aiolifx constraint --- .../python-modules/aiolifx-themes/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiolifx-themes/default.nix b/pkgs/development/python-modules/aiolifx-themes/default.nix index 36b7484cd621..461590b0cc49 100644 --- a/pkgs/development/python-modules/aiolifx-themes/default.nix +++ b/pkgs/development/python-modules/aiolifx-themes/default.nix @@ -1,12 +1,12 @@ { lib -, fetchFromGitHub -, buildPythonPackage -, pythonOlder , aiolifx +, async-timeout +, buildPythonPackage +, fetchFromGitHub , poetry-core , pytest-asyncio , pytestCheckHook -, async-timeout +, pythonOlder , typer }: @@ -31,6 +31,11 @@ buildPythonPackage rec { --replace "typer = " "# unused: typer = " ''; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace 'aiolifx = "^0.8.6"' 'aiolifx = "*"' + ''; + nativeBuildInputs = [ poetry-core ];