diff options
Diffstat (limited to 'pkgs/lorem-text')
-rw-r--r-- | pkgs/lorem-text/default.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/lorem-text/default.nix b/pkgs/lorem-text/default.nix index 7927346..07cb402 100644 --- a/pkgs/lorem-text/default.nix +++ b/pkgs/lorem-text/default.nix @@ -1,9 +1,7 @@ { python3Packages, fetchFromGitHub, -}: -let - +}: let pypkg = { buildPythonPackage, click, @@ -20,5 +18,5 @@ let propagatedBuildInputs = [click]; passthru.pythonPackage = pypkg; }; - -in python3Packages.callPackage pypkg { } +in + python3Packages.callPackage pypkg {} |