mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
90 lines
1.8 KiB
Nix
90 lines
1.8 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.5";
|
|
pname = "dulwich";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jelmer";
|
|
repo = "dulwich";
|
|
rev = "refs/tags/dulwich-${version}";
|
|
hash = "sha256-/YqC7y8PU+H2qjPqqzdw6iSSSElK709izLTcs9qbt1I=";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|