Merge pull request #248135 from r-ryantm/auto-update/python310Packages.pyintesishome

python310Packages.pyintesishome: 1.8.4 -> 1.8.5
This commit is contained in:
Nick Cao 2023-08-09 22:50:35 -06:00 committed by GitHub
commit 53968b1598
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,21 @@
, aiohttp , aiohttp
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyintesishome"; pname = "pyintesishome";
version = "1.8.4"; version = "1.8.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jnimmo"; owner = "jnimmo";
repo = "pyIntesisHome"; repo = "pyIntesisHome";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-+pXGB7mQszbBp4KhOYzDKoGFoUHATWLbOU6QwMIpGWU="; hash = "sha256-QgIvIn8I5EtJSNj1FdOI+DPgG7/y2ToQ62dhk7flieo=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -21,11 +25,15 @@ buildPythonPackage rec {
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pyintesishome" ];
pythonImportsCheck = [
"pyintesishome"
];
meta = with lib; { meta = with lib; {
description = "Python interface for IntesisHome devices"; description = "Python interface for IntesisHome devices";
homepage = "https://github.com/jnimmo/pyIntesisHome"; homepage = "https://github.com/jnimmo/pyIntesisHome";
changelog = "https://github.com/jnimmo/pyIntesisHome/releases/tag/${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };