diff options
Diffstat (limited to 'pkgs/development/python-modules/iocextract/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/iocextract/default.nix | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/iocextract/default.nix b/pkgs/development/python-modules/iocextract/default.nix index fd00ff991f00..97d587195ab0 100644 --- a/pkgs/development/python-modules/iocextract/default.nix +++ b/pkgs/development/python-modules/iocextract/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, regex -, requests +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + regex, + requests, }: buildPythonPackage rec { @@ -26,17 +27,11 @@ buildPythonPackage rec { requests ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "iocextract" - ]; + pythonImportsCheck = [ "iocextract" ]; - pytestFlagsArray = [ - "tests.py" - ]; + pytestFlagsArray = [ "tests.py" ]; disabledTests = [ # AssertionError: 'http://exampledotcom/test' != 'http://example.com/test' |
