mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
pythonPackages.dns: move alias to python-aliases.nix
This commit is contained in:
parent
a68aefeb05
commit
b128806d99
|
@ -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
|
||||
|
|
|
@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
|
|||
boto
|
||||
click
|
||||
consul
|
||||
dns
|
||||
dnspython
|
||||
kazoo
|
||||
kubernetes
|
||||
prettytable
|
||||
|
|
|
@ -17,7 +17,7 @@ python3Packages.buildPythonApplication rec {
|
|||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
requests ruamel_yaml appdirs
|
||||
sleekxmpp dns
|
||||
sleekxmpp dnspython
|
||||
emoji
|
||||
psutil
|
||||
matrix-client
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -22,7 +22,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
beautifulsoup4
|
||||
censys
|
||||
certifi
|
||||
dns
|
||||
dnspython
|
||||
gevent
|
||||
grequests
|
||||
lxml
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue