pkgs/openevse: fix deps

This commit is contained in:
Aaron Bieber 2024-01-14 08:00:36 -07:00
parent e292d9a41e
commit 4a2149154e
No known key found for this signature in database

View File

@ -4,16 +4,22 @@
, setuptools
, fetchFromGitHub
, fetchPypi
, aiohttp
, requests
, ...
}:
let
python-openevse-http = buildPythonPackage rec {
my-python-openevse-http = buildPythonPackage rec {
pname = "python-openevse-http";
version = "0.1.58";
pyproject = true;
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
requests
aiohttp
];
src = fetchPypi {
inherit pname version;
@ -31,7 +37,7 @@ buildHomeAssistantComponent rec {
];
propagatedBuildInputs = [
python-openevse-http
my-python-openevse-http
];
buildInputs = [ setuptools-scm ];