diff options
Diffstat (limited to 'pkgs/development/python-modules/janus/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/janus/default.nix | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/janus/default.nix b/pkgs/development/python-modules/janus/default.nix index 15b75bc2aa3b..62041277358a 100644 --- a/pkgs/development/python-modules/janus/default.nix +++ b/pkgs/development/python-modules/janus/default.nix @@ -1,5 +1,11 @@ -{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio -, typing-extensions +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + pythonOlder, + pytest-asyncio, + typing-extensions, }: buildPythonPackage rec { @@ -14,11 +20,12 @@ buildPythonPackage rec { disabled = pythonOlder "3.6"; - propagatedBuildInputs = [ - typing-extensions - ]; + propagatedBuildInputs = [ typing-extensions ]; - nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; + nativeCheckInputs = [ + pytest-asyncio + pytestCheckHook + ]; # also fails upstream: https://github.com/aio-libs/janus/pull/258 disabledTests = [ "test_format" ]; |
