pythonPackages.keyrings-alt: disable tests
They heavily rely on the keyring package test suite
This commit is contained in:
parent
310555b281
commit
a7d6b1620b
@ -21,10 +21,16 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytest keyring ] ++ stdenv.lib.optional (pythonOlder "3.3") backports_unittest-mock;
|
checkInputs = [ pytest keyring ] ++ stdenv.lib.optional (pythonOlder "3.3") backports_unittest-mock;
|
||||||
|
|
||||||
|
# heavily relies on importing tests from keyring package
|
||||||
|
doCheck = false;
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test
|
py.test
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"keyrings.alt"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
description = "Alternate keyring implementations";
|
description = "Alternate keyring implementations";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user