summary refs log tree commit diff
path: root/pkgs/development/python-modules/GitPython
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-26 15:40:15 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:57 +0100
commitd118e8d185699289588c715bced07063bc77b664 (patch)
tree9084f946d7890f22e853e130db05ff1e51dbd88d /pkgs/development/python-modules/GitPython
parentea1fc916a0ae9fecda0ca579c9489a166b864853 (diff)
downloadnixpkgs-d118e8d185699289588c715bced07063bc77b664.tar
nixpkgs-d118e8d185699289588c715bced07063bc77b664.tar.gz
nixpkgs-d118e8d185699289588c715bced07063bc77b664.tar.bz2
nixpkgs-d118e8d185699289588c715bced07063bc77b664.tar.lz
nixpkgs-d118e8d185699289588c715bced07063bc77b664.tar.xz
nixpkgs-d118e8d185699289588c715bced07063bc77b664.tar.zst
nixpkgs-d118e8d185699289588c715bced07063bc77b664.zip
pythonPackages.GitPython: disable python2
no longer supported
Diffstat (limited to 'pkgs/development/python-modules/GitPython')
-rw-r--r--pkgs/development/python-modules/GitPython/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/GitPython/default.nix b/pkgs/development/python-modules/GitPython/default.nix
index 44822c1e685..d92100cc141 100644
--- a/pkgs/development/python-modules/GitPython/default.nix
+++ b/pkgs/development/python-modules/GitPython/default.nix
@@ -3,6 +3,7 @@
 buildPythonPackage rec {
   version = "3.0.4";
   pname = "GitPython";
+  disabled = isPy27; # no longer supported
 
   src = fetchPypi {
     inherit pname version;