pythonPackages.docker: use dontUseSetuptoolsCheck

This commit is contained in:
Dmitry Kalinkin 2020-03-30 00:29:31 -04:00
parent 570e3edc85
commit 272cdfcd6c
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -18,9 +18,7 @@ buildPythonPackage rec {
sha256 = "0bkj1xfp6mnvk1i9hl5awsmwi07q6iwwsjznd7kvrx5m19i6dbnx";
};
nativeBuildInputs = [
pytestCheckHook
] ++ lib.optional isPy27 mock;
nativeBuildInputs = lib.optional isPy27 mock;
propagatedBuildInputs = [
paramiko
@ -29,12 +27,15 @@ buildPythonPackage rec {
websocket_client
] ++ lib.optional isPy27 backports_ssl_match_hostname;
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [ "tests/unit" ];
# Deselect socket tests on Darwin because it hits the path length limit for a Unix domain socket
disabledTests = lib.optionals stdenv.isDarwin [ "stream_response" "socket_file" ];
# skip setuptoolsCheckPhase
doCheck = false;
dontUseSetuptoolsCheck = true;
meta = with lib; {
description = "An API client for docker written in Python";