about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyserial
diff options
context:
space:
mode:
authorLuke Adams <luke.adams@belljar.io>2018-07-24 21:52:57 -0500
committerLuke Adams <luke.adams@belljar.io>2018-07-25 13:27:51 -0500
commit100349d605688e13e2dc4de1d56819a01c1c96e6 (patch)
tree9b53f2a6418706e64f69730c07e604e2f8fd9f90 /pkgs/development/python-modules/pyserial
parenta6ede9f46e54a3bba8e9cd60b3a884687c3a8336 (diff)
downloadnixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar.gz
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar.bz2
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar.lz
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar.xz
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.tar.zst
nixlib-100349d605688e13e2dc4de1d56819a01c1c96e6.zip
pyserial: fix build on Darwin
Diffstat (limited to 'pkgs/development/python-modules/pyserial')
-rw-r--r--pkgs/development/python-modules/pyserial/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyserial/default.nix b/pkgs/development/python-modules/pyserial/default.nix
index 508104d33129..c7787a42691b 100644
--- a/pkgs/development/python-modules/pyserial/default.nix
+++ b/pkgs/development/python-modules/pyserial/default.nix
@@ -10,7 +10,7 @@ buildPythonPackage rec {
   };
 
   checkPhase = "python -m unittest discover -s test";
-  doInstallCheck = !hostPlatform.isDarwin; # broken on darwin
+  doCheck = !hostPlatform.isDarwin; # broken on darwin
 
   meta = with lib; {
     homepage = "https://github.com/pyserial/pyserial";