python312Packages.aiolyric: 2.0.0 -> 2.0.1

Changelog: https://github.com/timmo001/aiolyric/releases/tag/v2.0.1
This commit is contained in:
Fabian Affolter 2024-04-24 17:50:00 +02:00
parent 3aee40c139
commit cce5ff7b49
1 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,9 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, incremental
, pythonOlder
, pytestCheckHook
, setuptools
@ -9,16 +11,16 @@
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 = [
@ -27,9 +29,11 @@ buildPythonPackage rec {
dependencies = [
aiohttp
incremental
];
nativeCheckInputs = [
aioresponses
pytestCheckHook
];