Merge pull request #115454 from prusnak/python-docker
python3Packages.docker: 4.4.3 -> 4.4.4
This commit is contained in:
commit
d83286570c
@ -1,8 +1,11 @@
|
|||||||
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy27
|
||||||
, backports_ssl_match_hostname
|
, backports_ssl_match_hostname
|
||||||
, mock
|
, mock
|
||||||
, paramiko
|
, paramiko
|
||||||
, pytest
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, requests
|
, requests
|
||||||
, six
|
, six
|
||||||
@ -11,11 +14,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "docker";
|
pname = "docker";
|
||||||
version = "4.4.3";
|
version = "4.4.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "de5753b7f6486dd541a98393e423e387579b8974a5068748b83f852cc76a89d6";
|
sha256 = "d3393c878f575d3a9ca3b94471a3c89a6d960b35feb92f033c0de36cc9d934db";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = lib.optional isPy27 mock;
|
nativeBuildInputs = lib.optional isPy27 mock;
|
||||||
@ -32,8 +35,9 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
pytestFlagsArray = [ "tests/unit" ];
|
pytestFlagsArray = [ "tests/unit" ];
|
||||||
|
|
||||||
# Deselect socket tests on Darwin because it hits the path length limit for a Unix domain socket
|
# 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" ];
|
disabledTests = lib.optionals stdenv.isDarwin [ "api_test" "stream_response" "socket_file" ];
|
||||||
|
|
||||||
dontUseSetuptoolsCheck = true;
|
dontUseSetuptoolsCheck = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user