about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/luigi
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/networking/cluster/luigi
parent9affd374ec570bc66873cf308acc843658f86732 (diff)
treewide/applications: use top-level fetchPypi
Diffstat (limited to 'pkgs/applications/networking/cluster/luigi')
-rw-r--r--pkgs/applications/networking/cluster/luigi/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/luigi/default.nix b/pkgs/applications/networking/cluster/luigi/default.nix
index 2c839e84a4e6d..81ddb68b69e0d 100644
--- a/pkgs/applications/networking/cluster/luigi/default.nix
+++ b/pkgs/applications/networking/cluster/luigi/default.nix
@@ -1,10 +1,10 @@
-{ lib, python3 }:
+{ lib, python3, fetchPypi }:
 
 python3.pkgs.buildPythonApplication rec {
   pname = "luigi";
   version = "3.0.2";
 
-  src = python3.pkgs.fetchPypi {
+  src = fetchPypi {
     inherit pname version;
     sha256 = "b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb";
   };
@@ -15,7 +15,7 @@ python3.pkgs.buildPythonApplication rec {
   doCheck = false;
 
   # This enables accessing modules stored in cwd
-  makeWrapperArgs = ["--prefix PYTHONPATH . :"];
+  makeWrapperArgs = [ "--prefix PYTHONPATH . :" ];
 
   meta = with lib; {
     description = "Python package that helps you build complex pipelines of batch jobs";
@@ -25,7 +25,7 @@ python3.pkgs.buildPythonApplication rec {
     '';
     homepage = "https://github.com/spotify/luigi";
     changelog = "https://github.com/spotify/luigi/releases/tag/${version}";
-    license =  [ licenses.asl20 ];
+    license = [ licenses.asl20 ];
     maintainers = [ maintainers.bhipple ];
   };
 }