Commit c0ac2d5c authored by Robert Schütz's avatar Robert Schütz
Browse files

python311Packages.flet: relax websockets version constraint

parent de3f6321
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
{ 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 = [