about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix')
-rw-r--r--pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix b/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
index 29ab4f1cb062d..cb5efd7aebb82 100644
--- a/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
+++ b/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
@@ -1,7 +1,8 @@
-{ buildPythonPackage
-, lib
-, fetchPypi
-, xstatic-jquery
+{
+  buildPythonPackage,
+  lib,
+  fetchPypi,
+  xstatic-jquery,
 }:
 
 buildPythonPackage rec {
@@ -19,11 +20,10 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ xstatic-jquery ];
 
-  meta = with lib;{
-    homepage =  "https://plugins.jquery.com/project/jQuery-File-Upload";
+  meta = with lib; {
+    homepage = "https://plugins.jquery.com/project/jQuery-File-Upload";
     description = "jquery-file-upload packaged static files for python";
     license = licenses.mit;
     maintainers = with maintainers; [ makefu ];
   };
-
 }