diff options
Diffstat (limited to 'pkgs/development/python-modules/trampoline/default.nix')
-rw-r--r-- | pkgs/development/python-modules/trampoline/default.nix | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/trampoline/default.nix b/pkgs/development/python-modules/trampoline/default.nix index 2be2ff6e819d..6cc163885ccc 100644 --- a/pkgs/development/python-modules/trampoline/default.nix +++ b/pkgs/development/python-modules/trampoline/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchFromGitLab -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitLab, + pytestCheckHook, }: buildPythonPackage { @@ -17,13 +18,9 @@ buildPythonPackage { hash = "sha256-A/tuR+QW9sKh76Qjwn1uQxlVJgWrSFzXeBRDdnSi2o4="; }; - pythonImportsCheck = [ - "trampoline" - ]; + pythonImportsCheck = [ "trampoline" ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Simple and tiny yield-based trampoline implementation for python"; |