pythonPackages.dns: move alias to python-aliases.nix

This commit is contained in:
Robert Schütz 2021-06-22 23:38:50 +02:00
parent a68aefeb05
commit b128806d99
7 changed files with 7 additions and 8 deletions

View file

@ -1,10 +1,10 @@
{ lib, fetchPypi, buildPythonPackage, dns, pyasn1 }:
{ lib, fetchPypi, buildPythonPackage, dnspython, pyasn1 }:
buildPythonPackage rec {
pname = "sleekxmpp";
version = "1.3.3";
propagatedBuildInputs = [ dns pyasn1 ];
propagatedBuildInputs = [ dnspython pyasn1 ];
patches = [
./dnspython-ip6.patch

View file

@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
boto
click
consul
dns
dnspython
kazoo
kubernetes
prettytable

View file

@ -17,7 +17,7 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [
requests ruamel_yaml appdirs
sleekxmpp dns
sleekxmpp dnspython
emoji
psutil
matrix-client

View file

@ -15,7 +15,7 @@ python3.pkgs.buildPythonApplication rec {
substituteInPlace requirements.txt --replace 'dnspython==1.16.0' 'dnspython'
'';
propagatedBuildInputs = [ python3.pkgs.dns ];
propagatedBuildInputs = [ python3.pkgs.dnspython ];
# tests require network access
doCheck = false;

View file

@ -22,7 +22,7 @@ python3.pkgs.buildPythonApplication rec {
beautifulsoup4
censys
certifi
dns
dnspython
gevent
grequests
lxml

View file

@ -36,6 +36,7 @@ mapAliases ({
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # Added 2020-11-29
bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # Added 2019-11-27
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
dns = dnspython; # Alias for compatibility, 2017-12-10
faulthandler = throw "faulthandler is built into ${python.executable}";
gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28

View file

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