mercurial: Pin to Python 2

This commit is contained in:
Aneesh Agrawal 2016-09-26 11:41:54 -04:00
parent 777a6cafd9
commit e6897a3fb4

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pythonPackages, makeWrapper, docutils, unzip
{ stdenv, fetchurl, python2Packages, makeWrapper, docutils, unzip
, guiSupport ? false, tk ? null
, ApplicationServices, cf-private }:
@ -6,7 +6,7 @@ let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
version = "3.9.1";
name = "mercurial-${version}";
inherit (pythonPackages) curses docutils hg-git dulwich python;
inherit (python2Packages) curses docutils hg-git dulwich python;
in
stdenv.mkDerivation {