diff options
Diffstat (limited to 'pkgs/development/python-modules/bx-py-utils/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/bx-py-utils/default.nix | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/bx-py-utils/default.nix b/pkgs/development/python-modules/bx-py-utils/default.nix index d66cfa62044d..c6cf1a32185f 100644 --- a/pkgs/development/python-modules/bx-py-utils/default.nix +++ b/pkgs/development/python-modules/bx-py-utils/default.nix @@ -1,15 +1,16 @@ -{ lib -, stdenv -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, poetry-core -, beautifulsoup4 -, boto3 -, lxml -, pdoc -, pytestCheckHook -, requests-mock +{ + lib, + stdenv, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + poetry-core, + beautifulsoup4, + boto3, + lxml, + pdoc, + pytestCheckHook, + requests-mock, }: buildPythonPackage rec { @@ -31,9 +32,7 @@ buildPythonPackage rec { rm bx_py_utils_tests/publish.py ''; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; pythonImportsCheck = [ "bx_py_utils.anonymize" @@ -71,13 +70,13 @@ buildPythonPackage rec { "test_assert_html_snapshot_by_css_selector" ]; - disabledTestPaths = [ - "bx_py_utils_tests/tests/test_project_setup.py" - ] ++ lib.optionals stdenv.isDarwin [ - # processify() doesn't work under darwin - # https://github.com/boxine/bx_py_utils/issues/80 - "bx_py_utils_tests/tests/test_processify.py" - ]; + disabledTestPaths = + [ "bx_py_utils_tests/tests/test_project_setup.py" ] + ++ lib.optionals stdenv.isDarwin [ + # processify() doesn't work under darwin + # https://github.com/boxine/bx_py_utils/issues/80 + "bx_py_utils_tests/tests/test_processify.py" + ]; meta = { description = "Various Python utility functions"; |
