summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyserial
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-23 17:48:19 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-06-23 17:50:01 -0400
commit680957d8b27de04d04a6502ef06f1a7ac7a930c4 (patch)
tree322188f4476d540e607fb311c4195a28fabdc46a /pkgs/development/python-modules/pyserial
parentfb1852f4246f1c40b68fa435e31d22b250b4e417 (diff)
downloadnixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar.gz
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar.bz2
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar.lz
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar.xz
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.tar.zst
nixpkgs-680957d8b27de04d04a6502ef06f1a7ac7a930c4.zip
pyserial: disable install check on darwin
Diffstat (limited to 'pkgs/development/python-modules/pyserial')
-rw-r--r--pkgs/development/python-modules/pyserial/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyserial/default.nix b/pkgs/development/python-modules/pyserial/default.nix
index 95ab0f339b0..e8de912c375 100644
--- a/pkgs/development/python-modules/pyserial/default.nix
+++ b/pkgs/development/python-modules/pyserial/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchPypi, buildPythonPackage }:
+{ lib, fetchPypi, buildPythonPackage, hostPlatform }:
 
 buildPythonPackage rec {
   pname = "pyserial";
@@ -11,6 +11,7 @@ buildPythonPackage rec {
   };
 
   checkPhase = "python -m unittest discover -s test";
+  doInstallCheck = !hostPlatform.isDarwin; # broken on darwin
 
   meta = with lib; {
     homepage = "https://github.com/pyserial/pyserial";