From 5f5380a3755c882c16480fe4f43cdb8ba2a73922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 18 Jun 2021 18:33:47 +0200 Subject: [PATCH] python3Packages.pytest-subprocess: 1.1.0 -> 1.1.1 https://github.com/aklajnert/pytest-subprocess/blob/1.1.1/HISTORY.rst --- .../python-modules/pytest-subprocess/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pytest-subprocess/default.nix b/pkgs/development/python-modules/pytest-subprocess/default.nix index aeacd084eec1..83afef929244 100644 --- a/pkgs/development/python-modules/pytest-subprocess/default.nix +++ b/pkgs/development/python-modules/pytest-subprocess/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "pytest-subprocess"; - version = "1.1.0"; + version = "1.1.1"; disabled = pythonOlder "3.6"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "aklajnert"; repo = "pytest-subprocess"; rev = version; - sha256 = "sha256-r6WNDdvZAHMG1kPtLJlCwvhbVG1gC1NEvRfta+Chxnk="; + sha256 = "sha256-o8wDZhNHGPV1BQ5Zi2kFNlWq5w0cqebaJUhUUwTK6So="; }; buildInputs = [ @@ -31,10 +31,6 @@ buildPythonPackage rec { pygments ]; - disabledTests = [ - "test_multiple_wait" # https://github.com/aklajnert/pytest-subprocess/issues/36 - ]; - meta = with lib; { description = "A plugin to fake subprocess for pytest"; homepage = "https://github.com/aklajnert/pytest-subprocess";