mailman: use python2.7 package dns

This commit is contained in:
Domen Kožar 2015-10-28 18:23:17 +01:00
parent 27d5fb07a0
commit 4355ef9e41

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python, python3Packages }:
{ stdenv, fetchurl, python, pythonPackages }:
stdenv.mkDerivation rec {
name = "mailman-2.1.18";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0jc360crakvpz71msl0h11zv3849fqzlj9jfh1g7x3j4459n07fw";
};
buildInputs = [ python python3Packages.dns ];
buildInputs = [ python pythonPackages.dns ];
patches = [ ./fix-var-prefix.patch ];