From 4125c1bcb2bb0bf51b8de5db0beb468910105be4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 10 May 2020 09:30:25 +0200 Subject: [PATCH] pythonPackages.hypothesis_4: init Still some packages that need 4 instead of 5. --- pkgs/top-level/python-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8b6c9c9a1c7..56bdde7a307 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4056,10 +4056,13 @@ in { hydra = callPackage ../development/python-modules/hydra { }; + # File name is called 2.nix because this one will need to remain for Python 2. + hypothesis_4 = callPackage ../development/python-modules/hypothesis/2.nix { }; + hypothesis = if isPy3k then callPackage ../development/python-modules/hypothesis { } else - callPackage ../development/python-modules/hypothesis/2.nix { }; + self.hypothesis_4; hydra-check = callPackage ../development/python-modules/hydra-check { };