python2.pkgs.dulwich: keep 0.19.16 for python 2

This commit is contained in:
Frederik Rietdijk
2020-06-11 12:05:21 +02:00
parent e8a60ee412
commit 28a1fffbec
2 changed files with 34 additions and 3 deletions
+4 -3
View File
@@ -3652,9 +3652,10 @@ in {
duckdb = pkgs.duckdb;
};
dulwich = callPackage ../development/python-modules/dulwich {
inherit (pkgs) git glibcLocales;
};
dulwich = if isPy3k then
callPackage ../development/python-modules/dulwich { }
else
callPackage ../development/python-modules/dulwich/0_19.nix { };
hg-git = callPackage ../development/python-modules/hg-git { };