about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
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/window-managers
parent9affd374ec570bc66873cf308acc843658f86732 (diff)
treewide/applications: use top-level fetchPypi
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/i3/altlayout.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/i3/altlayout.nix b/pkgs/applications/window-managers/i3/altlayout.nix
index d66ae35723601..91f663907a0ab 100644
--- a/pkgs/applications/window-managers/i3/altlayout.nix
+++ b/pkgs/applications/window-managers/i3/altlayout.nix
@@ -1,10 +1,10 @@
-{ lib, python3Packages }:
+{ lib, python3Packages, fetchPypi }:
 
 python3Packages.buildPythonApplication rec {
   pname = "i3altlayout";
   version = "0.3";
 
-  src = python3Packages.fetchPypi {
+  src = fetchPypi {
     inherit pname version;
     sha256 = "1h0phf3s6ljffxw0bs73k041wildaz01h37iv5mxhami41wrh4qf";
   };