c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
50 lines
992 B
Nix
50 lines
992 B
Nix
{ lib
|
|
, aioconsole
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest-asyncio
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, websockets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "whirlpool-sixth-sense";
|
|
version = "0.18";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abmantis";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-XmbRUVivV+jSJUpksMIJ88CwNtOD+Qkwtqyg3dX33ZU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aioconsole
|
|
aiohttp
|
|
websockets
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
# https://github.com/abmantis/whirlpool-sixth-sense/issues/15
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "whirlpool" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for Whirlpool 6th Sense appliances";
|
|
homepage = "https://github.com/abmantis/whirlpool-sixth-sense/";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|