python3Packages.localzone: Use dnspython_1

localzone is currently incompatible with dnspython 2
This commit is contained in:
Tristan Helmich (omniIT) 2020-10-03 18:22:36 +00:00
parent 61717662e1
commit 7a85f34d7a

View File

@ -1,7 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, dnspython
, dnspython_1
, sphinx
, pytest
}:
@ -17,7 +17,7 @@ buildPythonPackage rec {
sha256 = "154l7qglsm4jrhqddvlas8cgl9qm2z4dzihv05jmsyqjikcmfwk8";
};
propagatedBuildInputs = [ dnspython sphinx ];
propagatedBuildInputs = [ dnspython_1 sphinx ];
checkInputs = [ pytest ];