python312Packages.aiolyric: refactor

This commit is contained in:
Fabian Affolter 2024-04-01 20:45:56 +02:00
parent 76a7969fbd
commit 9d2281c810
1 changed files with 7 additions and 2 deletions

View File

@ -4,12 +4,13 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "aiolyric";
version = "2.0.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,7 +21,11 @@ buildPythonPackage rec {
hash = "sha256-FZhLjVrLzLv6CZz/ROlvbtBK9XnpO8pG48aSIoBxhCo=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
aiohttp
];