pyserial: disable install check on darwin
This commit is contained in:
parent
fb1852f424
commit
680957d8b2
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage }:
|
{ lib, fetchPypi, buildPythonPackage, hostPlatform }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyserial";
|
pname = "pyserial";
|
||||||
@ -11,6 +11,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
checkPhase = "python -m unittest discover -s test";
|
checkPhase = "python -m unittest discover -s test";
|
||||||
|
doInstallCheck = !hostPlatform.isDarwin; # broken on darwin
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/pyserial/pyserial";
|
homepage = "https://github.com/pyserial/pyserial";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user