python-keyring: disable tests on darwin

(cherry picked from commit f0956b7baf)
This commit is contained in:
Daiderd Jordan
2017-09-12 20:54:48 +02:00
parent 947f295ef1
commit b16c73697a
2 changed files with 2 additions and 1 deletions

View File

@@ -21,7 +21,6 @@ buildPythonPackage rec {
homepage = "https://github.com/mitya57/secretstorage";
description = "Python bindings to FreeDesktop.org Secret Service API";
license = licenses.bsdOriginal;
platforms = platforms.linux;
maintainer = with maintainers; [ teto ];
};
}

View File

@@ -11175,6 +11175,8 @@ in {
buildInputs = with self;
[ fs gdata python_keyczar mock pyasn1 pycrypto pytest_28 six setuptools_scm pytestrunner ];
doCheck = !stdenv.isDarwin;
checkPhase = ''
py.test $out
'';