diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 18:02:13 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 18:02:13 +0200 |
| commit | 9b4fb239930f3ec1bbbe6aae4404e09d69272d97 (patch) | |
| tree | b775fecba2a2671aa59ec661a7e091dd06fcfd9f /pkgs/development/python-modules/gitpython | |
| parent | 38df468246bdd4cf3af2daf496326d690c4483e5 (diff) | |
| parent | 9f46451cf3d158323809a874a02b0d2892cb2a35 (diff) | |
Merge remote-tracking branch 'origin/master' into staging-next
Diffstat (limited to 'pkgs/development/python-modules/gitpython')
| -rw-r--r-- | pkgs/development/python-modules/gitpython/default.nix | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/gitpython/default.nix b/pkgs/development/python-modules/gitpython/default.nix index eca3c326d0eb..a7f45bd7b3db 100644 --- a/pkgs/development/python-modules/gitpython/default.nix +++ b/pkgs/development/python-modules/gitpython/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, ddt -, fetchFromGitHub -, gitdb -, pkgs -, pythonOlder -, substituteAll -, typing-extensions +{ + lib, + buildPythonPackage, + ddt, + fetchFromGitHub, + gitdb, + pkgs, + pythonOlder, + substituteAll, + typing-extensions, }: buildPythonPackage rec { @@ -27,9 +28,7 @@ buildPythonPackage rec { ddt gitdb pkgs.gitMinimal - ] ++ lib.optionals (pythonOlder "3.10") [ - typing-extensions - ]; + ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ]; postPatch = '' substituteInPlace git/cmd.py \ @@ -39,9 +38,7 @@ buildPythonPackage rec { # Tests require a git repo doCheck = false; - pythonImportsCheck = [ - "git" - ]; + pythonImportsCheck = [ "git" ]; meta = with lib; { description = "Python Git Library"; |
