From 2872237cb292fdfb39f109e103fdcd1f928ae229 Mon Sep 17 00:00:00 2001 From: JB Gosselin <1536838+jbgosselin@users.noreply.github.com> Date: Mon, 28 Aug 2023 14:46:57 -0400 Subject: [PATCH] python3Packages.pytest-recording: 0.12.2 -> 0.13.0 --- .../python-modules/pytest-recording/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytest-recording/default.nix b/pkgs/development/python-modules/pytest-recording/default.nix index 87c0e8d33a02..7a53cbbba882 100644 --- a/pkgs/development/python-modules/pytest-recording/default.nix +++ b/pkgs/development/python-modules/pytest-recording/default.nix @@ -5,8 +5,8 @@ # install dependencies , pytest , vcrpy -, attrs # test dependencies +, hatchling , pytestCheckHook , pytest-httpbin , pytest-mock @@ -15,22 +15,23 @@ buildPythonPackage rec { pname = "pytest-recording"; - version = "0.12.2"; + version = "0.13.0"; + format = "pyproject"; src = fetchFromGitHub { owner = "kiwicom"; repo = "pytest-recording"; rev = "v${version}"; - hash = "sha256-nivwxaW8AIrBtPkzPJYfxlPxWn2NuYcaMry/IrBnnl0="; + hash = "sha256-SCHdzii6GYVWVY7MW/IW6CNZMuu5h/jXEj49P0jvhoE="; }; buildInputs = [ + hatchling pytest ]; propagatedBuildInputs = [ vcrpy - attrs ]; __darwinAllowLocalNetworking = true;