From 7a298f0969d2a68dfc115579ac789a55e723ed45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 3 Mar 2026 17:24:00 -0800 Subject: [PATCH] python3Packages.inline-snapshot: 0.31.1 -> 0.32.4 Diff: https://github.com/15r10nk/inline-snapshot/compare/0.31.1...0.32.4 Changelog: https://github.com/15r10nk/inline-snapshot/blob/0.32.4/CHANGELOG.md --- .../python-modules/inline-snapshot/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/inline-snapshot/default.nix b/pkgs/development/python-modules/inline-snapshot/default.nix index bf4272905afb..46f99b114f72 100644 --- a/pkgs/development/python-modules/inline-snapshot/default.nix +++ b/pkgs/development/python-modules/inline-snapshot/default.nix @@ -9,43 +9,48 @@ freezegun, hatchling, hypothesis, + isort, pydantic, - pyright, + pytest, pytest-freezer, pytest-mock, pytest-xdist, pytestCheckHook, rich, time-machine, - toml, + typing-extensions, }: buildPythonPackage rec { pname = "inline-snapshot"; - version = "0.31.1"; + version = "0.32.4"; pyproject = true; src = fetchFromGitHub { owner = "15r10nk"; repo = "inline-snapshot"; tag = version; - hash = "sha256-45e3M7WjGLhmn1Tdf7fD04jSA32TvB0QmFzvywJc3Ac="; + hash = "sha256-OuFSzrNOovQcXlZoqQFX19pNXXgRGPrLf9os12n4KfU="; }; build-system = [ hatchling ]; + buildInputs = [ + pytest + ]; + dependencies = [ asttokens executing rich - toml + typing-extensions ]; nativeCheckInputs = [ freezegun hypothesis + isort pydantic - pyright pytest-freezer pytest-mock pytest-xdist