pythonPackages.dnspython: use 1.x for Python 2

This commit is contained in:
Frederik Rietdijk
2020-09-03 19:10:16 +02:00
parent c25a7cd846
commit 30f07d1657
2 changed files with 8 additions and 8 deletions
+1 -7
View File
@@ -25,13 +25,7 @@ let
# use the latest 1.x release instead
py = python3.override {
packageOverrides = self: super: {
dnspython = super.dnspython.overridePythonAttrs (oldAttrs: rec {
version = "1.16.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01";
};
});
dnspython = super.dnspython_1;
};
};