Unverified Commit aab9ccad authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #234730 from natsukium/bx-py-utils/fix-darwin

python3Packages.bx-py-utils: disable a broken test on darwin
parents db151597 172ec1bf
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
@@ -72,11 +73,16 @@ buildPythonPackage rec {

  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";
    homepage = "https://github.com/boxine/bx_py_utils";
    changelog = "https://github.com/boxine/bx_py_utils/releases/tag/${src.rev}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };