diff options
Diffstat (limited to 'pkgs/development/python-modules/py-ubjson/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/py-ubjson/default.nix | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/py-ubjson/default.nix b/pkgs/development/python-modules/py-ubjson/default.nix index f9518fdead93..7eca2165efc1 100644 --- a/pkgs/development/python-modules/py-ubjson/default.nix +++ b/pkgs/development/python-modules/py-ubjson/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, }: buildPythonPackage rec { @@ -16,22 +17,16 @@ buildPythonPackage rec { sha256 = "1frn97xfa88zrfmpnvdk1pc03yihlchhph99bhjayvzlfcrhm5v3"; }; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # https://github.com/Iotic-Labs/py-ubjson/issues/18 "test_recursion" ]; - pytestFlagsArray = [ - "test/test.py" - ]; + pytestFlagsArray = [ "test/test.py" ]; - pythonImportsCheck = [ - "ubjson" - ]; + pythonImportsCheck = [ "ubjson" ]; meta = with lib; { description = "Universal Binary JSON draft-12 serializer for Python"; |
