python.pkgs.gitdb: 0.6.4 -> 4.0.2

This commit is contained in:
Timo Kaufmann 2020-03-14 17:00:10 +01:00 committed by Jon
parent 74f451b851
commit e789990fb6

View file

@ -1,12 +1,18 @@
{ lib, buildPythonPackage, fetchPypi, smmap }:
{ lib
, buildPythonPackage
, fetchPypi
, smmap
, isPy3k
}:
buildPythonPackage rec {
pname = "gitdb";
version = "0.6.4";
version = "4.0.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3";
sha256 = "0l113fphn6msjl3cl3kyf332b6lal7daxdd0nfma0x9ipfb013jr";
};
propagatedBuildInputs = [ smmap ];