Merge pull request #306578 from fabaff/aiolyric-bump

python312Packages.aiolyric: 2.0.0 -> 2.0.1
This commit is contained in:
Fabian Affolter 2024-04-25 15:24:28 +02:00 committed by GitHub
commit 605481e740
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 16 deletions

View File

@ -1,35 +1,38 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
incremental,
pythonOlder,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "aiolyric";
version = "2.0.0";
version = "2.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "timmo001";
repo = "aiolyric";
rev = "refs/tags/${version}";
hash = "sha256-FZhLjVrLzLv6CZz/ROlvbtBK9XnpO8pG48aSIoBxhCo=";
hash = "sha256-pN/F4Rdov06sm1yfJQEzmWyujWVeVU+bNGGkgnN4jYw=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
incremental
];
nativeCheckInputs = [
aioresponses
pytestCheckHook
];
@ -38,9 +41,7 @@ buildPythonPackage rec {
"test_priority"
];
pythonImportsCheck = [
"aiolyric"
];
pythonImportsCheck = [ "aiolyric" ];
meta = with lib; {
description = "Python module for the Honeywell Lyric Platform";