nixos/system/services/home-assistant/customComponents/pymyenergi.nix

30 lines
568 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
httpx,
setuptools,
pycognito,
}:
buildPythonPackage rec {
pname = "pymyenergi";
version = "0.2.1";
pyproject = false;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "cjne";
repo = "pymyenergi";
tag = version;
hash = "sha256-yfAc+phs8qLiYyM5j5LGDtA4fIT5LrHF3cNIhYjQemI=";
};
build-system = [ setuptools ];
dependencies = [
httpx
pycognito
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pymyenergi" ];
}