diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5df72d24697..eba96d22f1b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5425,9 +5425,14 @@ in modules // { sha256 = "0q7plxnbbkp5dd0k73736l7gf932a89yy920yrgl8amfpixw324w"; }; - buildInputs = with self; [ nose ]; + buildInputs = with self; [ mock nose ]; propagatedBuildInputs = with self; [ gitdb ]; + # All tests error with + # InvalidGitRepositoryError: /tmp/nix-build-python2.7-GitPython-1.0.1.drv-0/GitPython-1.0.1 + # Maybe due to being in a chroot? + doCheck = false; + meta = { description = "Python Git Library"; maintainers = with maintainers; [ mornfall ];