about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-big-picture
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-05-25 10:51:30 -0400
committerfigsoda <figsoda@pm.me>2023-05-25 10:51:30 -0400
commit8014b08ee01faee85fdf8e4a06d7e27aa4ac948d (patch)
treedd419561f01fd3707b9cc2aefad4863efbdac07c /pkgs/applications/version-management/git-big-picture
parent9affd374ec570bc66873cf308acc843658f86732 (diff)
treewide/applications: use top-level fetchPypi
Diffstat (limited to 'pkgs/applications/version-management/git-big-picture')
-rw-r--r--pkgs/applications/version-management/git-big-picture/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/version-management/git-big-picture/default.nix b/pkgs/applications/version-management/git-big-picture/default.nix
index decd3c51a392f..959031fad9f95 100644
--- a/pkgs/applications/version-management/git-big-picture/default.nix
+++ b/pkgs/applications/version-management/git-big-picture/default.nix
@@ -1,21 +1,21 @@
-{ python3Packages, lib, git, graphviz }:
+{ lib, python3Packages, fetchPypi, git, graphviz }:
 
 python3Packages.buildPythonApplication rec {
   pname = "git-big-picture";
   version = "1.1.1";
   format = "wheel";
 
-  src = python3Packages.fetchPypi {
+  src = fetchPypi {
     inherit format version;
-    pname = "git_big_picture";  # underscores needed for working download URL
-    python = "py3";  # i.e. no Python 2.7
+    pname = "git_big_picture"; # underscores needed for working download URL
+    python = "py3"; # i.e. no Python 2.7
     sha256 = "a20a480057ced1585c4c38497d27a5012f12dd29697313f0bb8fa6ddbb5c17d8";
   };
 
   postFixup = ''
     wrapProgram $out/bin/git-big-picture \
       --prefix PATH ":" ${ lib.makeBinPath [ git graphviz ]  }
-    '';
+  '';
 
   meta = {
     description = "Tool for visualization of Git repositories";