My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/gekitchen/default.nix

53 lines
869 B

{ 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}";
sha256 = "sha256-eKGundh7j9LqFd71bx86rNBVu2iAcgLN25JfFa39+VA=";
};
propagatedBuildInputs = [
aiohttp
bidict
humanize
lxml
requests
slixmpp
websockets
];
checkInputs = [
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 ];
};
}