summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gitpython
diff options
context:
space:
mode:
authorHeinz Deinhart <tool_githubcom@a.nix.at>2024-06-26 09:38:16 +0200
committerGitHub <noreply@github.com>2024-06-26 09:38:16 +0200
commit136c2c93bd57ea98a297fee0057a212c3957f1fb (patch)
tree5e08668e47fa3840bb95111074f83ef6e5e1ac14 /pkgs/development/python-modules/gitpython
parentd41922a01688da4470fd461243e59ee798bd6a33 (diff)
parent9208076626e57636dc866ec732186662bb4c04ce (diff)
Merge branch 'NixOS:master' into ddnet_18
Diffstat (limited to 'pkgs/development/python-modules/gitpython')
-rw-r--r--pkgs/development/python-modules/gitpython/default.nix27
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";