From c943e22378c4781b7661452809be525254d4f963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 3 Mar 2019 02:35:31 +0100 Subject: [PATCH] Revert "pythonPackages.wptserve: fix build by adding a local h2 3.0.1 instance" This reverts commit 3e603b18a5f7f77f965b4f8532df234aa9f187a6. Python packages' dependencies should not be overridden because having multiple versions in $PYTHONPATH breaks stuff. --- .../development/python-modules/wptserve/default.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pkgs/development/python-modules/wptserve/default.nix b/pkgs/development/python-modules/wptserve/default.nix index 51dc3d767b3..7258ec30f9f 100644 --- a/pkgs/development/python-modules/wptserve/default.nix +++ b/pkgs/development/python-modules/wptserve/default.nix @@ -5,19 +5,6 @@ , isPy3k }: -let - _h2 = h2; -in let - h2 = _h2.overrideAttrs (x: { - version = "3.0.1"; - src = fetchPypi { - pname = "h2"; - version = "3.0.1"; - sha256 = "0r3f43r0v7sqgdjjg5ngw0dndk2v6cyd0jncpwya54m37y42z5mj"; - }; - }); -in - buildPythonPackage rec { pname = "wptserve"; version = "2.0";