diff options
Diffstat (limited to 'pkgs/development/python-modules/circuitbreaker/default.nix')
-rw-r--r-- | pkgs/development/python-modules/circuitbreaker/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/circuitbreaker/default.nix b/pkgs/development/python-modules/circuitbreaker/default.nix index 9218d82847cc..da66b2b45108 100644 --- a/pkgs/development/python-modules/circuitbreaker/default.nix +++ b/pkgs/development/python-modules/circuitbreaker/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, pytest-asyncio -, pytest-mock -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, + pytest-asyncio, + pytest-mock, + pythonOlder, }: buildPythonPackage rec { @@ -27,9 +28,7 @@ buildPythonPackage rec { pytest-mock ]; - pythonImportsCheck = [ - "circuitbreaker" - ]; + pythonImportsCheck = [ "circuitbreaker" ]; meta = with lib; { description = "Python Circuit Breaker implementation"; |