diff options
Diffstat (limited to 'pkgs/development/python-modules/flask-testing/default.nix')
-rw-r--r-- | pkgs/development/python-modules/flask-testing/default.nix | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/flask-testing/default.nix b/pkgs/development/python-modules/flask-testing/default.nix index cb1c3cf79bd1..07d410fa1b17 100644 --- a/pkgs/development/python-modules/flask-testing/default.nix +++ b/pkgs/development/python-modules/flask-testing/default.nix @@ -1,11 +1,12 @@ -{ lib -, stdenv -, blinker -, pytestCheckHook -, buildPythonPackage -, fetchPypi -, flask -, pythonOlder +{ + lib, + stdenv, + blinker, + pytestCheckHook, + buildPythonPackage, + fetchPypi, + flask, + pythonOlder, }: buildPythonPackage rec { @@ -21,9 +22,7 @@ buildPythonPackage rec { hash = "sha256-CnNNe2jmOpQQtBPNex+WRW+ahYvQmmIi1GVlDMeC6wE="; }; - propagatedBuildInputs = [ - flask - ]; + propagatedBuildInputs = [ flask ]; nativeCheckInputs = [ blinker @@ -31,7 +30,7 @@ buildPythonPackage rec { ]; # Some of the tests use localhost networking on darwin - doCheck = !stdenv.isDarwin; + doCheck = !stdenv.hostPlatform.isDarwin; disabledTests = [ # RuntimeError and NotImplementedError @@ -47,9 +46,7 @@ buildPythonPackage rec { "tests/test_twill.py" ]; - pythonImportsCheck = [ - "flask_testing" - ]; + pythonImportsCheck = [ "flask_testing" ]; meta = with lib; { description = "Extension provides unit testing utilities for Flask"; |