about summary refs log tree commit diff
path: root/pkgs/applications/search
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/search
parent9affd374ec570bc66873cf308acc843658f86732 (diff)
treewide/applications: use top-level fetchPypi
Diffstat (limited to 'pkgs/applications/search')
-rw-r--r--pkgs/applications/search/xlsxgrep/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/search/xlsxgrep/default.nix b/pkgs/applications/search/xlsxgrep/default.nix
index 8c62ae5736daa..18b3a1a26c873 100644
--- a/pkgs/applications/search/xlsxgrep/default.nix
+++ b/pkgs/applications/search/xlsxgrep/default.nix
@@ -1,10 +1,10 @@
-{ lib, python3Packages }:
+{ lib, python3Packages, fetchPypi }:
 
 python3Packages.buildPythonApplication rec {
   pname = "xlsxgrep";
   version = "0.0.23";
 
-  src = python3Packages.fetchPypi {
+  src = fetchPypi {
     inherit pname version;
     sha256 = "014i1nifx67mxi0k9sch00j6bjykb6krzl2q3ara9s1g75inl4rm";
   };