Revert "python312Packages.dulwich: 0.21.7 -> 0.22.1"

This reverts commit 82d7a8b959.
This commit is contained in:
Fabian Affolter 2024-04-28 18:46:38 +02:00
parent 31721067f4
commit 448512cca0

View File

@ -21,16 +21,16 @@
buildPythonPackage rec {
pname = "dulwich";
version = "0.22.1";
version = "0.21.7";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jelmer";
repo = "dulwich";
rev = "refs/tags/${pname}-${version}";
hash = "sha256-bf3ZUMX4afpdTBpFnx0HMyzCNG6V/p4eOl36djxGbtk=";
hash = "sha256-iP+6KtaQ8tfOobovSLSJZogS/XWW0LuHgE2oV8uQW/8=";
};
build-system = [
@ -63,15 +63,26 @@ buildPythonPackage rec {
glibcLocales
pytest-xdist
pytestCheckHook
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
] ++ passthru.optional-dependencies.fastimport
++ passthru.optional-dependencies.pgp
++ passthru.optional-dependencies.paramiko;
doCheck = !stdenv.isDarwin;
disabledTests = [
# OSError: [Errno 84] Invalid or incomplete multibyte or wide character: b'/build/tmpsqwlbpd1/\xc0'
"test_no_decode_encode"
# OSError: [Errno 84] Invalid or incomplete multibyte or wide character: b'/build/tmpwmtfyvo2/refs.git/refs/heads/\xcd\xee\xe2\xe0\xff\xe2\xe5\xf2\xea\xe01'
"test_cyrillic"
# OSError: [Errno 84] Invalid or incomplete multibyte or wide character: b'/build/tmpfseetobk/test/\xc0'
"test_commit_no_encode_decode"
];
disabledTestPaths = [
# Missing test inputs
"tests/contrib/test_swift_smoke.py"
# Import issue
"tests/test_greenthreads.py"
# missing test inputs
"dulwich/contrib/test_swift_smoke.py"
# flaky on high core count >4
"dulwich/tests/compat/test_client.py"
];
pythonImportsCheck = [