3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.pebble: disable tests on darwin

This commit is contained in:
Ben Siraphob 2021-12-25 11:33:27 +07:00
parent 0e1c67be7d
commit 6ba4cef768
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -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
];