python311Packages.playwright: relax pyee constraint

Checking runtime dependencies for playwright-1.40.0-py3-none-manylinux1_x86_64.whl
  - pyee==11.0.1 not satisifeid by version 11.0.0
This commit is contained in:
Martin Weinelt
2023-12-20 20:10:28 +01:00
parent be5b79beae
commit 2addce9d0b
@@ -11,6 +11,7 @@
, setuptools
, setuptools-scm
, playwright-driver
, pythonRelaxDepsHook
}:
let
@@ -70,8 +71,16 @@ buildPythonPackage rec {
'';
nativeBuildInputs = [ git setuptools-scm setuptools ]
++ lib.optionals stdenv.isLinux [ auditwheel ];
nativeBuildInputs = [
git
setuptools-scm
setuptools
pythonRelaxDepsHook
] ++ lib.optionals stdenv.isLinux [ auditwheel ];
pythonRelaxDeps = [
"pyee"
];
propagatedBuildInputs = [
greenlet