python3Packages.dulwich: 0.20.26 -> 0.20.27

main
Fabian Affolter 2 years ago committed by Jonathan Ringer
parent 8ef375f7b3
commit 75b3b8c4b1
  1. 12
      pkgs/development/python-modules/dulwich/default.nix

@ -12,15 +12,19 @@
, mock
, pkgs
, urllib3
, pythonOlder
}:
buildPythonPackage rec {
version = "0.20.26";
version = "0.20.27";
pname = "dulwich";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OKpQ+FnI6lMHGgScPx1cxU99xgpBNqGrYxdWp59lgrU=";
hash = "sha256-9dP6dlmRTnorh4NahWZsdwHTdR+IFVFlPUzSVgsqEk4=";
};
LC_ALL = "en_US.UTF-8";
@ -43,7 +47,9 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "dulwich" ];
pythonImportsCheck = [
"dulwich"
];
meta = with lib; {
description = "Simple Python implementation of the Git file formats and protocols";

Loading…
Cancel
Save