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