python311Packages.flet: relax websockets version constraint

This commit is contained in:
Robert Schütz
2024-01-20 17:20:04 -08:00
parent de3f6321d2
commit c0ac2d5cd4
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
# build-system
, poetry-core
@@ -22,7 +23,7 @@
buildPythonPackage rec {
pname = "flet";
version = "0.18.0";
format = "pyproject";
pyproject = true;
src = fetchPypi {
inherit pname version;
@@ -31,6 +32,11 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"websockets"
];
propagatedBuildInputs = [