diff options
Diffstat (limited to 'pkgs/development/python-modules/plac/default.nix')
-rw-r--r-- | pkgs/development/python-modules/plac/default.nix | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/plac/default.nix b/pkgs/development/python-modules/plac/default.nix index bc00253aafde..d234636bb2ce 100644 --- a/pkgs/development/python-modules/plac/default.nix +++ b/pkgs/development/python-modules/plac/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, python -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + python, + pythonOlder, }: buildPythonPackage rec { @@ -30,15 +31,13 @@ buildPythonPackage rec { runHook postCheck ''; - pythonImportsCheck = [ - "plac" - ]; + pythonImportsCheck = [ "plac" ]; meta = with lib; { description = "Parsing the Command Line the Easy Way"; mainProgram = "plac_runner.py"; homepage = "https://github.com/micheles/plac"; license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |