1{ lib 2, aiohttp 3, buildPythonPackage 4, fetchFromGitHub 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "pyintesishome"; 10 version = "1.8.5"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "jnimmo"; 17 repo = "pyIntesisHome"; 18 rev = "refs/tags/${version}"; 19 hash = "sha256-QgIvIn8I5EtJSNj1FdOI+DPgG7/y2ToQ62dhk7flieo="; 20 }; 21 22 propagatedBuildInputs = [ 23 aiohttp 24 ]; 25 26 # Project has no tests 27 doCheck = false; 28 29 pythonImportsCheck = [ 30 "pyintesishome" 31 ]; 32 33 meta = with lib; { 34 description = "Python interface for IntesisHome devices"; 35 homepage = "https://github.com/jnimmo/pyIntesisHome"; 36 changelog = "https://github.com/jnimmo/pyIntesisHome/releases/tag/${version}"; 37 license = with licenses; [ mit ]; 38 maintainers = with maintainers; [ fab ]; 39 }; 40}