From 696731acfbdc3c2c52a0fab5aad2a710418d10bb Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 4 Oct 2020 17:04:52 +0200 Subject: [PATCH] Revert "Merge pull request #99496 from fadenb/localzone_dnspython_downgrade" This reverts commit 1d122a89cf5f70daa8caf996d543a0e71473eed5, reversing changes made to 4304c709af6c1b6d96c3bc7a833a33e4cf93f9cc. Quoting FRidh: > Libraries cannot use a different version. If it is not compatible with the > current dnspython it needs to be marked as broken. --- pkgs/development/python-modules/localzone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/localzone/default.nix b/pkgs/development/python-modules/localzone/default.nix index 24b4dc840fb..3827c297205 100644 --- a/pkgs/development/python-modules/localzone/default.nix +++ b/pkgs/development/python-modules/localzone/default.nix @@ -1,7 +1,7 @@ { stdenv , buildPythonPackage , fetchFromGitHub -, dnspython_1 +, dnspython , sphinx , pytest }: @@ -17,7 +17,7 @@ buildPythonPackage rec { sha256 = "154l7qglsm4jrhqddvlas8cgl9qm2z4dzihv05jmsyqjikcmfwk8"; }; - propagatedBuildInputs = [ dnspython_1 sphinx ]; + propagatedBuildInputs = [ dnspython sphinx ]; checkInputs = [ pytest ];