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

11
flake.lock generated
View File

@@ -655,16 +655,15 @@
]
},
"locked": {
"lastModified": 1753837013,
"narHash": "sha256-+kBJhOSS5S6gPp/pbTk1B3EL9Xr08yFuQoGGQ+SoQwQ=",
"owner": "mjallen18",
"lastModified": 1756367273,
"narHash": "sha256-u7/qG5xQxW+o51R2lBPj0NxU3oFrUwj78UlCKKNHGAc=",
"owner": "pabloaul",
"repo": "lsfg-vk-flake",
"rev": "f7fc5f9d421d64d3cf24c8d0955a80718ef70bac",
"rev": "62aadfc844b2002abe47cbbc9dfd028033376248",
"type": "github"
},
"original": {
"owner": "mjallen18",
"ref": "main",
"owner": "pabloaul",
"repo": "lsfg-vk-flake",
"type": "github"
}

View File

@@ -83,7 +83,7 @@
};
lsfg-vk = {
url = "github:mjallen18/lsfg-vk-flake/main";
url = "github:pabloaul/lsfg-vk-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};

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