diff options
Diffstat (limited to 'pkgs/development/python-modules/cliche/default.nix')
-rw-r--r-- | pkgs/development/python-modules/cliche/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/cliche/default.nix b/pkgs/development/python-modules/cliche/default.nix index b51801d8d2d3..4b0e63ed21c1 100644 --- a/pkgs/development/python-modules/cliche/default.nix +++ b/pkgs/development/python-modules/cliche/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, ipdb -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + ipdb, + pytestCheckHook, }: buildPythonPackage { @@ -33,6 +34,6 @@ buildPythonPackage { mainProgram = "cliche"; homepage = "https://github.com/kootenpv/cliche"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |