gitAndTools.git-hub: use python2

imports urllib2
This commit is contained in:
Frederik Rietdijk 2016-10-18 09:27:20 +02:00
parent 509ef439ac
commit c431f11d1f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, docutils, python }:
{ stdenv, fetchFromGitHub, docutils, python2 }:
stdenv.mkDerivation rec {
name = "git-hub-${version}";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "sociomantic-tsunami";
};
buildInputs = [ python ];
buildInputs = [ python2 ];
nativeBuildInputs = [ docutils ];
postPatch = ''