23 buildPythonPackage rec {
28 src = fetchFromGitHub {
32 hash = "sha256-77wZK5dqxXUkOgWE7NBpGJBbbtYYxRCJwPbtwLIX09I=";
35 build-system = [ setuptools ];
51 disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
52 # cannot access /usr/bin/pgrep from the sandbox
53 "test_stop_standing_subproc"
54 "test_stop_standing_subproc_and_descendants"
55 "test_stop_standing_subproc_without_pipe"
58 __darwinAllowLocalNetworking = true;
61 changelog = "https://github.com/google/mobly/blob/${src.rev}/CHANGELOG.md";
62 description = "Automation framework for special end-to-end test cases";
63 homepage = "https://github.com/google/mobly";
64 license = licenses.asl20;
65 maintainers = with maintainers; [ hexa ];