python312Packages.dulwich: 0.21.7 -> 0.22.1

Changelog: https://github.com/jelmer/dulwich/blob/dulwich-0.22.1/NEWS
This commit is contained in:
Fabian Affolter 2024-04-23 15:47:33 +02:00
parent 5cef65b22d
commit 82d7a8b959

View file

@ -3,7 +3,7 @@
, buildPythonPackage , buildPythonPackage
, certifi , certifi
, fastimport , fastimport
, fetchPypi , fetchFromGitHub
, gevent , gevent
, geventhttpclient , geventhttpclient
, git , git
@ -15,23 +15,27 @@
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools , setuptools
, setuptools-rust
, urllib3 , urllib3
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dulwich"; pname = "dulwich";
version = "0.21.7"; version = "0.22.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "jelmer";
hash = "sha256-qenGaDPOpYDDrBKSfkuXEZhddq/KmNqXFAXUFN5g6Wg="; repo = "dulwich";
rev = "refs/tags/${version}";
hash = "sha256-bf3ZUMX4afpdTBpFnx0HMyzCNG6V/p4eOl36djxGbtk=";
}; };
build-system = [ build-system = [
setuptools setuptools
setuptools-rust
]; ];
dependencies = [ dependencies = [
@ -59,26 +63,15 @@ buildPythonPackage rec {
glibcLocales glibcLocales
pytest-xdist pytest-xdist
pytestCheckHook pytestCheckHook
] ++ passthru.optional-dependencies.fastimport ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
++ passthru.optional-dependencies.pgp
++ passthru.optional-dependencies.paramiko;
doCheck = !stdenv.isDarwin; 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 = [ disabledTestPaths = [
# missing test inputs # Missing test inputs
"dulwich/contrib/test_swift_smoke.py" "tests/contrib/test_swift_smoke.py"
# flaky on high core count >4 # Import issue
"dulwich/tests/compat/test_client.py" "tests/test_greenthreads.py"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [