mailman: use python2

This commit is contained in:
rnhmjoj
2018-06-03 03:07:26 +02:00
parent c8784f9cd8
commit 1ba3d8b7d1

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, python, pythonPackages }:
{ stdenv, fetchurl, python2 }:
stdenv.mkDerivation rec {
name = "mailman-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1r6sjapjmbav45xibjzc2a8y1xf4ikz09470ma1kw7iz174wn8z7";
};
buildInputs = [ python pythonPackages.dnspython ];
buildInputs = [ python2 python2.pkgs.dnspython ];
patches = [ ./fix-var-prefix.patch ];