Merge pull request #302448 from fabaff/velbus-aio-bump

python312Packages.velbus-aio: 2024.4.0 -> 2024.4.1
This commit is contained in:
Fabian Affolter 2024-04-08 08:35:08 +02:00 committed by GitHub
commit 17cd858e3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 20 deletions

View File

@ -1,17 +1,18 @@
{ lib
, backoff
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pyserial
, pyserial-asyncio
, pytestCheckHook
, setuptools
{
lib,
backoff,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pyserial,
pyserial-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "velbus-aio";
version = "2024.4.0";
version = "2024.4.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,13 +21,11 @@ buildPythonPackage rec {
owner = "Cereal2nd";
repo = "velbus-aio";
rev = "refs/tags/${version}";
hash = "sha256-wYcASRmUxVdUpfKlNIteQlHw3ZaYxZ7VenKtaju1yTE=";
hash = "sha256-rskWnH5zFvBuNL5eJ8O4D6htRP/XtFcq1xH8ZXzT1I4=";
fetchSubmodules = true;
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
backoff
@ -34,13 +33,9 @@ buildPythonPackage rec {
pyserial-asyncio
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"velbusaio"
];
pythonImportsCheck = [ "velbusaio" ];
meta = with lib; {
description = "Python library to support the Velbus home automation system";