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-11-30 22:52:13 +01:00
parent be5b79beae
commit 2addce9d0b
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

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