Merge pull request #308453 from fabaff/elkm1-lib-bump

python312Packages.elkm1-lib: 2.2.6 -> 2.2.7
This commit is contained in:
Nick Cao 2024-05-02 09:45:28 -04:00 committed by GitHub
commit 868cf36478
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,36 +1,35 @@
{ lib
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, poetry-core
, pyserial-asyncio
, pytest-asyncio
, pytestCheckHook
, pythonOlder
{
lib,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
poetry-core,
pyserial-asyncio-fast,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "elkm1-lib";
version = "2.2.6";
format = "pyproject";
version = "2.2.7";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "gwww";
repo = "elkm1";
rev = "refs/tags/${version}";
hash = "sha256-5Jmn/ywyg6fmp0ZxPf79ET+JWPF4VjDJMwj/qU6ckS0=";
hash = "sha256-5YdmZO/8HimQ9Ft/K/I6xu0Av2SjUBp3+poBe7aVUpM=";
};
nativeBuildInputs = [
poetry-core
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
async-timeout
pyserial-asyncio
pyserial-asyncio-fast
];
nativeCheckInputs = [
@ -38,9 +37,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"elkm1_lib"
];
pythonImportsCheck = [ "elkm1_lib" ];
meta = with lib; {
description = "Python module for interacting with ElkM1 alarm/automation panel";