This commit is contained in:
mjallen18
2025-09-01 18:39:30 -05:00
parent 6e1f6c23fe
commit 81471cc582
3 changed files with 11 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
{ python3Packages, fetchPypi, ... }:
python3Packages.buildPythonPackage rec {
{ pkgs, fetchPypi, ... }:
pkgs.stable.python3Packages.buildPythonPackage rec {
pname = "homeassistant_api";
version = "5.0.0";
format = "pyproject";
@@ -10,16 +10,16 @@ python3Packages.buildPythonPackage rec {
# do not run tests
doCheck = false;
nativeBuildInputs = with python3Packages; [
nativeBuildInputs = with pkgs.stable.python3Packages; [
poetry-core
requests-cache
];
dependencies = with python3Packages; [
dependencies = with pkgs.stable.python3Packages; [
requests-cache
pydantic
websockets
];
propagatedBuildInputs = with python3Packages; [
propagatedBuildInputs = with pkgs.stable.python3Packages; [
aiohttp
aiohttp-client-cache
pydantic