From c0dc032e42b42222c82f4ad75e1b1832d91dc6b2 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 13 Jul 2019 04:28:00 -0500 Subject: [PATCH] pythonPackages.pytest_3: drop pluggy>=0.9 introduced a breaking change to pytest_3, and is not feasible to keep pytest_3 around in nixpkgs. See: https://github.com/NixOS/nixpkgs/pull/64445 --- pkgs/top-level/python-packages.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ee24116ea1..701c5c6594e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1934,12 +1934,6 @@ in { hypothesis = self.hypothesis.override { doCheck = false; }; }; - # Keep 3 because many test suites are not yet compatible with Pytest 4. - pytest_3 = callPackage ../development/python-modules/pytest/3.10.nix { - # hypothesis tests require pytest that causes dependency cycle - hypothesis = self.hypothesis.override { doCheck = false; }; - }; - pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { }; pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };