3
0
Fork 0
forked from mirrors/nixpkgs

homeassistant-satellite: relax aiohttp constraint

Checking runtime dependencies for homeassistant_satellite-2.3.0-py3-none-any.whl
  - aiohttp==3.8.4 not satisifeid by version 3.8.6
This commit is contained in:
Martin Weinelt 2023-11-30 22:48:03 +01:00
parent c87fe643e7
commit be5b79beae
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -16,8 +16,12 @@ python3.pkgs.buildPythonApplication rec {
};
nativeBuildInputs = with python3.pkgs; [
pythonRelaxDepsHook
setuptools
wheel
];
pythonRelaxDeps = [
"aiohttp"
];
propagatedBuildInputs = with python3.pkgs; [