From 22a0432604f5a87f2fbc5a0c902aa0dee25a8a80 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 30 Aug 2024 15:49:20 +0000 Subject: [PATCH] python312Packages.aiomealie: 0.8.1 -> 0.9.2 Diff: https://github.com/joostlek/python-mealie/compare/refs/tags/v0.8.1...v0.9.2 Changelog: https://github.com/joostlek/python-mealie/releases/tag/v0.9.0 https://github.com/joostlek/python-mealie/releases/tag/v0.9.1 https://github.com/joostlek/python-mealie/releases/tag/v0.9.2 --- pkgs/development/python-modules/aiomealie/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/aiomealie/default.nix b/pkgs/development/python-modules/aiomealie/default.nix index 1c73118ffc5d..e6ea538d2453 100644 --- a/pkgs/development/python-modules/aiomealie/default.nix +++ b/pkgs/development/python-modules/aiomealie/default.nix @@ -8,6 +8,7 @@ orjson, poetry-core, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, syrupy, @@ -16,7 +17,7 @@ buildPythonPackage rec { pname = "aiomealie"; - version = "0.8.1"; + version = "0.9.2"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,14 +26,9 @@ buildPythonPackage rec { owner = "joostlek"; repo = "python-mealie"; rev = "refs/tags/v${version}"; - hash = "sha256-1n/AMXEoJJ/jftYzYHvo+jTSasNEqnFVAYqlipHFmGc="; + hash = "sha256-rvizMeV1+tsBQiZl2Am4SjLrFkyhR/SvvLFwOTVP6wI="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace-fail "--cov" "" - ''; - build-system = [ poetry-core ]; dependencies = [ @@ -45,6 +41,7 @@ buildPythonPackage rec { nativeCheckInputs = [ aioresponses pytest-asyncio + pytest-cov-stub pytestCheckHook syrupy ];