27 lines
571 B
Nix
27 lines
571 B
Nix
{ fetchFromGitHub, home-assistant, ... }:
|
|
home-assistant.python.pkgs.buildPythonPackage rec {
|
|
pname = "wyzeapy";
|
|
version = "0.5.31";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SecKatie";
|
|
repo = "wyzeapy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KDCd1G5Tj0YWM2WA3DJK9rTf1rMzz4qBSUl8FOUbvdM=";
|
|
};
|
|
|
|
build-system = with home-assistant.python.pkgs; [
|
|
poetry-core
|
|
hatchling
|
|
];
|
|
|
|
dependencies = with home-assistant.python.pkgs; [
|
|
aiodns
|
|
aiohttp
|
|
pycryptodome
|
|
];
|
|
|
|
doCheck = false; # no tests in the PyPI tarball
|
|
}
|