depot/third_party/nixpkgs/pkgs/development/python-modules/gekitchen/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

50 lines
875 B
Nix

{
lib,
aiohttp,
bidict,
buildPythonPackage,
fetchFromGitHub,
humanize,
lxml,
pytestCheckHook,
pythonOlder,
requests,
slixmpp,
websockets,
}:
buildPythonPackage rec {
pname = "gekitchen";
version = "0.2.19";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ajmarks";
repo = pname;
rev = "v${version}";
hash = "sha256-eKGundh7j9LqFd71bx86rNBVu2iAcgLN25JfFa39+VA=";
};
propagatedBuildInputs = [
aiohttp
bidict
humanize
lxml
requests
slixmpp
websockets
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "gekitchen" ];
meta = with lib; {
description = "Python SDK for GE smart appliances";
homepage = "https://github.com/ajmarks/gekitchen";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}