pythonPackages.dnspython_1: drop

Versioned attributes in python-packages.nix should be avoided.
This commit is contained in:
Robert Schütz 2021-06-22 23:37:39 +02:00
parent ee06b3b1d0
commit a68aefeb05
2 changed files with 1 additions and 3 deletions

View file

@ -2106,8 +2106,6 @@ in {
dnspython = callPackage ../development/python-modules/dnspython { };
dnspython_1 = callPackage ../development/python-modules/dnspython/1.nix { };
dns = self.dnspython; # Alias for compatibility, 2017-12-10
doc8 = callPackage ../development/python-modules/doc8 { };

View file

@ -80,7 +80,7 @@ with self; with super; {
django_evolution = callPackage ../development/python-modules/django_evolution { };
dnspython = super.dnspython_1;
dnspython = callPackage ../development/python-modules/dnspython/1.nix { };
docker-py = disabled super.docker-py;