Merge pull request #300761 from fabaff/aiolyric-bump

python312Packages.aiolyric: 1.1.1 -> 2.0.0
This commit is contained in:
Fabian Affolter 2024-04-01 23:10:32 +02:00 committed by GitHub
commit b495944cc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 5 deletions

View File

@ -4,23 +4,28 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "aiolyric";
version = "1.1.1";
format = "setuptools";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "timmo001";
repo = pname;
rev = "refs/tags/v${version}";
repo = "aiolyric";
rev = "refs/tags/${version}";
hash = "sha256-FZhLjVrLzLv6CZz/ROlvbtBK9XnpO8pG48aSIoBxhCo=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
aiohttp
];