python311Packages.flet-runtime: relax httpx version constraint

This commit is contained in:
Robert Schütz 2024-01-20 17:17:40 -08:00
parent bbe7d8f876
commit de3f6321d2

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, poetry-core
, pythonRelaxDepsHook
, flet-core
, httpx
, oauthlib
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "flet-runtime";
version = "0.18.0";
format = "pyproject";
pyproject = true;
src = fetchPypi {
pname = "flet_runtime";
@ -20,6 +21,11 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"httpx"
];
propagatedBuildInputs = [