python310Packages.aiolifx-themes: relax aiolifx constraint

This commit is contained in:
Fabian Affolter 2023-05-13 23:50:38 +02:00
parent 435f5e5002
commit 077b5ac91a

View File

@ -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
];