Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages: rename dns -> dnspython

rnhmjoj 491bc4cf c4a5ab72

+15 -15
+1 -1
pkgs/applications/misc/calibre/default.nix
··· 49 49 poppler_utils libpng imagemagick libjpeg 50 50 fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils wrapGAppsHook 51 51 ] ++ (with python2Packages; [ 52 - apsw cssselect cssutils dateutil dns html5-parser lxml mechanize netifaces pillow 52 + apsw cssselect cssutils dateutil dnspython html5-parser lxml mechanize netifaces pillow 53 53 python pyqt5 sip 54 54 regex msgpack 55 55 # the following are distributed with calibre, but we use upstream instead
+1 -1
pkgs/applications/misc/electron-cash/default.nix
··· 12 12 }; 13 13 14 14 propagatedBuildInputs = with python2Packages; [ 15 - dns 15 + dnspython 16 16 ecdsa 17 17 jsonrpclib 18 18 pbkdf2
+1 -1
pkgs/applications/misc/electrum-dash/default.nix
··· 10 10 }; 11 11 12 12 propagatedBuildInputs = with python2Packages; [ 13 - dns 13 + dnspython 14 14 ecdsa 15 15 pbkdf2 16 16 protobuf
+1 -1
pkgs/applications/misc/electrum-ltc/default.nix
··· 21 21 qrcode 22 22 ltc_scrypt 23 23 protobuf 24 - dns 24 + dnspython 25 25 jsonrpclib 26 26 ]; 27 27
+1 -1
pkgs/applications/misc/electrum/default.nix
··· 10 10 }; 11 11 12 12 propagatedBuildInputs = with python2Packages; [ 13 - dns 13 + dnspython 14 14 ecdsa 15 15 jsonrpclib 16 16 matplotlib
+1 -1
pkgs/applications/networking/errbot/default.nix
··· 24 24 buildInputs = [ glibcLocales ]; 25 25 propagatedBuildInputs = with pythonPackages; [ 26 26 webtest bottle threadpool rocket-errbot requests jinja2 27 - pyopenssl colorlog Yapsy markdown ansi pygments dns pep8 27 + pyopenssl colorlog Yapsy markdown ansi pygments dnspython pep8 28 28 daemonize pygments-markdown-lexer telegram irc slackclient 29 29 sleekxmpp hypchat pytest 30 30 ];
+2 -2
pkgs/development/python-modules/salmon/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, nose, dns 1 + { stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, nose, dnspython 2 2 , chardet, lmtpd, pythondaemon, six, jinja2, mock }: 3 3 4 4 buildPythonPackage rec { ··· 18 18 }; 19 19 20 20 checkInputs = [ nose jinja2 mock ]; 21 - propagatedBuildInputs = [ chardet dns lmtpd pythondaemon six ]; 21 + propagatedBuildInputs = [ chardet dnspython lmtpd pythondaemon six ]; 22 22 23 23 meta = with stdenv.lib; { 24 24 homepage = http://salmon-mail.readthedocs.org/;
+1 -1
pkgs/servers/mail/mailman/default.nix
··· 9 9 sha256 = "1r6sjapjmbav45xibjzc2a8y1xf4ikz09470ma1kw7iz174wn8z7"; 10 10 }; 11 11 12 - buildInputs = [ python pythonPackages.dns ]; 12 + buildInputs = [ python pythonPackages.dnspython ]; 13 13 14 14 patches = [ ./fix-var-prefix.patch ]; 15 15
+1 -1
pkgs/tools/admin/ansible/2.1.nix
··· 36 36 dontPatchShebangs = false; 37 37 38 38 propagatedBuildInputs = [ 39 - pycrypto paramiko jinja pyyaml httplib2 boto six netaddr dns 39 + pycrypto paramiko jinja pyyaml httplib2 boto six netaddr dnspython 40 40 ] ++ stdenv.lib.optional windowsSupport pywinrm; 41 41 42 42 meta = with stdenv.lib; {
+1 -1
pkgs/tools/admin/ansible/2.2.nix
··· 38 38 dontPatchShebangs = false; 39 39 40 40 propagatedBuildInputs = [ 41 - pycrypto paramiko jinja pyyaml httplib2 boto six netaddr dns 41 + pycrypto paramiko jinja pyyaml httplib2 boto six netaddr dnspython 42 42 ] ++ stdenv.lib.optional windowsSupport pywinrm; 43 43 44 44 meta = with stdenv.lib; {
+1 -1
pkgs/tools/admin/ansible/2.3.nix
··· 24 24 dontPatchShebangs = false; 25 25 26 26 propagatedBuildInputs = with pythonPackages; [ 27 - pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dns 27 + pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dnspython 28 28 ] ++ stdenv.lib.optional windowsSupport pywinrm; 29 29 30 30 meta = with stdenv.lib; {
+1 -1
pkgs/tools/admin/ansible/2.4.nix
··· 24 24 dontPatchShebangs = false; 25 25 26 26 propagatedBuildInputs = with pythonPackages; [ 27 - pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dns 27 + pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dnspython 28 28 ] ++ stdenv.lib.optional windowsSupport pywinrm; 29 29 30 30 meta = with stdenv.lib; {
+1 -1
pkgs/tools/admin/cli53/default.nix
··· 23 23 propagatedBuildInputs = with python2.pkgs; [ 24 24 argparse 25 25 boto 26 - dns 26 + dnspython 27 27 ]; 28 28 29 29 meta = with lib; {
+1 -1
pkgs/tools/security/hash-slinger/default.nix
··· 14 14 sha256 = "05wn744ydclpnpyah6yfjqlfjlasrrhzj48lqmm5a91nyps5yqyn"; 15 15 }; 16 16 17 - pythonPath = with pythonPackages; [ dns m2crypto ipaddr python-gnupg 17 + pythonPath = with pythonPackages; [ dnspython m2crypto ipaddr python-gnupg 18 18 pyunbound ]; 19 19 20 20 buildInputs = [ pythonPackages.wrapPython ];