about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pebble
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-12-25 11:33:27 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-12-25 14:38:15 +0700
commit6ba4cef7682f113ec6020b5f5058260348ffca1f (patch)
tree337f31cf5aca1707a368b40a48df2f7778058f0f /pkgs/development/python-modules/pebble
parent0e1c67be7dbc4cbde9a21f21af6eac5bb2eb1a7d (diff)
python3Packages.pebble: disable tests on darwin
Diffstat (limited to 'pkgs/development/python-modules/pebble')
-rw-r--r--pkgs/development/python-modules/pebble/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pebble/default.nix b/pkgs/development/python-modules/pebble/default.nix
index 68aa1ba970753..daf4a0458670c 100644
--- a/pkgs/development/python-modules/pebble/default.nix
+++ b/pkgs/development/python-modules/pebble/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
+{ lib, stdenv, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
 
 buildPythonPackage rec {
   pname = "pebble";
@@ -11,6 +11,8 @@ buildPythonPackage rec {
     sha256 = "0a595f7mrf89xlck9b2x83bqybc9zd9jxkl0sa5cf19vax18rg8h";
   };
 
+  doCheck = !stdenv.isDarwin;
+
   checkInputs = [
     pytestCheckHook
   ];