depot/third_party/nixpkgs/pkgs/development/python-modules/dulwich/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

102 lines
2.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fastimport,
fetchFromGitHub,
fetchpatch2,
gevent,
geventhttpclient,
git,
glibcLocales,
gnupg,
gpgme,
paramiko,
unittestCheckHook,
pythonOlder,
setuptools,
setuptools-rust,
urllib3,
}:
buildPythonPackage rec {
version = "0.22.1";
pname = "dulwich";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jelmer";
repo = "dulwich";
rev = "refs/tags/dulwich-${version}";
hash = "sha256-bf3ZUMX4afpdTBpFnx0HMyzCNG6V/p4eOl36djxGbtk=";
};
patches = [
(fetchpatch2 {
name = "dulwich-geventhttpclient-api-breakage.patch";
url = "https://github.com/jelmer/dulwich/commit/5f0497de9c37ac4f4e8f27bed8decce13765d3df.patch";
hash = "sha256-0GgDgmYuLCsMc9nRRLNL2W6WYrkZ/1ZnZBQusEAzLKI=";
})
];
build-system = [
setuptools
setuptools-rust
];
propagatedBuildInputs = [
urllib3
];
optional-dependencies = {
fastimport = [ fastimport ];
https = [ urllib3 ];
pgp = [
gpgme
gnupg
];
paramiko = [ paramiko ];
};
nativeCheckInputs =
[
gevent
geventhttpclient
git
glibcLocales
unittestCheckHook
]
++ lib.flatten (lib.attrValues optional-dependencies);
preCheck = ''
# requires swift config file
rm tests/contrib/test_swift_smoke.py
# ImportError: attempted relative import beyond top-level package
rm tests/test_greenthreads.py
# git crashes; https://github.com/jelmer/dulwich/issues/1359
rm tests/compat/test_pack.py
'';
doCheck = !stdenv.hostPlatform.isDarwin;
pythonImportsCheck = [ "dulwich" ];
meta = with lib; {
description = "Implementation of the Git file formats and protocols";
longDescription = ''
Dulwich is a Python implementation of the Git file formats and protocols, which
does not depend on Git itself. All functionality is available in pure Python.
'';
homepage = "https://www.dulwich.io/";
changelog = "https://github.com/jelmer/dulwich/blob/dulwich-${version}/NEWS";
license = with licenses; [
asl20
gpl2Plus
];
maintainers = with maintainers; [ koral ];
};
}