mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
Revert "python312Packages.dulwich: forma twith nixfmt"
This reverts commit c220a30c60
.
This commit is contained in:
parent
1229c8c087
commit
31721067f4
@ -1,23 +1,22 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
certifi,
|
||||
fastimport,
|
||||
fetchFromGitHub,
|
||||
gevent,
|
||||
geventhttpclient,
|
||||
git,
|
||||
glibcLocales,
|
||||
gnupg,
|
||||
gpgme,
|
||||
paramiko,
|
||||
pytest-xdist,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
setuptools-rust,
|
||||
urllib3,
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, certifi
|
||||
, fastimport
|
||||
, fetchFromGitHub
|
||||
, gevent
|
||||
, geventhttpclient
|
||||
, git
|
||||
, glibcLocales
|
||||
, gnupg
|
||||
, gpgme
|
||||
, paramiko
|
||||
, pytest-xdist
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, setuptools-rust
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -45,12 +44,16 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
fastimport = [ fastimport ];
|
||||
fastimport = [
|
||||
fastimport
|
||||
];
|
||||
pgp = [
|
||||
gpgme
|
||||
gnupg
|
||||
];
|
||||
paramiko = [ paramiko ];
|
||||
paramiko = [
|
||||
paramiko
|
||||
];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
@ -71,7 +74,9 @@ buildPythonPackage rec {
|
||||
"tests/test_greenthreads.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "dulwich" ];
|
||||
pythonImportsCheck = [
|
||||
"dulwich"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implementation of the Git file formats and protocols";
|
||||
@ -81,10 +86,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
homepage = "https://www.dulwich.io/";
|
||||
changelog = "https://github.com/jelmer/dulwich/blob/dulwich-${version}/NEWS";
|
||||
license = with licenses; [
|
||||
asl20
|
||||
gpl2Plus
|
||||
];
|
||||
license = with licenses; [ asl20 gpl2Plus ];
|
||||
maintainers = with maintainers; [ koral ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user