Skip to content

Commit f0956b7

Browse files
committedSep 12, 2017
python-keyring: disable tests on darwin
1 parent cd286d4 commit f0956b7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎pkgs/development/python-modules/keyring/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ buildPythonPackage rec {
2121

2222
propagatedBuildInputs = [ secretstorage ];
2323

24+
doCheck = !stdenv.isDarwin;
25+
2426
checkPhase = ''
2527
py.test $out
2628
'';

‎pkgs/development/python-modules/secretstorage/default.nix

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ buildPythonPackage rec {
2121
homepage = "https://github.com/mitya57/secretstorage";
2222
description = "Python bindings to FreeDesktop.org Secret Service API";
2323
license = licenses.bsdOriginal;
24-
platforms = platforms.linux;
2524
maintainer = with maintainers; [ teto ];
2625
};
2726
}

0 commit comments

Comments
 (0)
Please sign in to comment.