From 4efedc535c93e052e1866f27a84e4fd5fbd6f687 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 13 Apr 2026 09:25:25 +0200 Subject: [PATCH] python3Packages.aioopenexchangerates: 0.6.21 -> 0.7.0 Changelog: https://github.com/MartinHjelmare/aioopenexchangerates/blob/v0.7.0/CHANGELOG.md --- .../python-modules/aioopenexchangerates/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aioopenexchangerates/default.nix b/pkgs/development/python-modules/aioopenexchangerates/default.nix index 12ecf2f9b239..510309a98570 100644 --- a/pkgs/development/python-modules/aioopenexchangerates/default.nix +++ b/pkgs/development/python-modules/aioopenexchangerates/default.nix @@ -5,27 +5,27 @@ buildPythonPackage, fetchFromGitHub, mashumaro, - poetry-core, pytest-aiohttp, pytest-cov-stub, pytestCheckHook, + setuptools, }: buildPythonPackage rec { pname = "aioopenexchangerates"; - version = "0.6.21"; + version = "0.7.0"; pyproject = true; src = fetchFromGitHub { owner = "MartinHjelmare"; repo = "aioopenexchangerates"; tag = "v${version}"; - hash = "sha256-yPi2k1ajW+X78dF3OJTdGR3h8mzNfYCsW0P8baKUjoA="; + hash = "sha256-pNjpeoXBlz2bdUeEsOlW7RJmbKTZGuBVTLHymGHwAiY="; }; pythonRelaxDeps = [ "pydantic" ]; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; dependencies = [ aiohttp @@ -45,7 +45,7 @@ buildPythonPackage rec { description = "Library for the Openexchangerates API"; homepage = "https://github.com/MartinHjelmare/aioopenexchangerates"; changelog = "https://github.com/MartinHjelmare/aioopenexchangerates/blob/v${version}/CHANGELOG.md"; - license = with lib.licenses; [ asl20 ]; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; }