mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
gitAndTools.git-hub: use python2
imports urllib2
This commit is contained in:
parent
509ef439ac
commit
c431f11d1f
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue