diff --git a/pkgs/development/python-modules/pyclip/default.nix b/pkgs/development/python-modules/pyclip/default.nix index 44f07cf4fa40..1978d20f7a6b 100644 --- a/pkgs/development/python-modules/pyclip/default.nix +++ b/pkgs/development/python-modules/pyclip/default.nix @@ -39,8 +39,11 @@ buildPythonPackage rec { runHook postCheck ''; + # Tests require `pbcopy` and `pbpaste` on darwin, which are dependencies that are not + # available in the build environemt. + doCheck = !stdenv.hostPlatform.isDarwin; + meta = { - broken = stdenv.hostPlatform.isDarwin; description = "Cross-platform clipboard utilities supporting both binary and text data"; mainProgram = "pyclip"; homepage = "https://github.com/spyoungtech/pyclip";