Merge pull request #310750 from r-ryantm/auto-update/python311Packages.total-connect-client

python311Packages.total-connect-client: 2024.4 -> 2024.5
This commit is contained in:
Fabian Affolter 2024-05-11 22:15:03 +02:00 committed by GitHub
commit 81adb3e88d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,41 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, zeep
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
zeep,
}:
buildPythonPackage rec {
pname = "total-connect-client";
version = "2024.4";
version = "2024.5";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "craigjmidwinter";
repo = "total-connect-client";
rev = "refs/tags/${version}";
hash = "sha256-LuPyhidbAzt/AU5WuXyxggGxjm9yArHsbn6iAaccMEc=";
hash = "sha256-NGiI4gn59U7NiRYtB6UydxOu+lVtmbl8qF3nbAjiYwk=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
zeep
];
dependencies = [ zeep ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"total_connect_client"
];
pythonImportsCheck = [ "total_connect_client" ];
meta = with lib; {
description = "Interact with Total Connect 2 alarm systems";