depot/third_party/nixpkgs/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

55 lines
1 KiB
Nix

{ lib
, aioconsole
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-mock
, pytestCheckHook
, pythonOlder
, setuptools
, websockets
}:
buildPythonPackage rec {
pname = "whirlpool-sixth-sense";
version = "0.18.4";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "abmantis";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-9dwkylr+aCTGw/VIY90nxq8IkqBASeEfdr5JGz7pZrc=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aioconsole
aiohttp
websockets
];
nativeCheckInputs = [
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 ];
};
}