2018-02-26 07:14:56 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-05-07 11:55:45 +01:00
|
|
|
, six, requests, websocket_client
|
2017-01-27 10:32:28 +00:00
|
|
|
, ipaddress, backports_ssl_match_hostname, docker_pycreds
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2018-08-13 08:23:23 +01:00
|
|
|
version = "3.5.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "docker";
|
2017-01-27 10:32:28 +00:00
|
|
|
|
2018-02-26 07:14:56 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 08:23:23 +01:00
|
|
|
sha256 = "bc693be5a84b3b9e5aaf156068c5c0a445ee5138c638c3fbc857133bf67ebe07";
|
2017-01-27 10:32:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six
|
2017-05-07 11:55:45 +01:00
|
|
|
requests
|
2017-01-27 10:32:28 +00:00
|
|
|
websocket_client
|
|
|
|
ipaddress
|
|
|
|
backports_ssl_match_hostname
|
|
|
|
docker_pycreds
|
|
|
|
];
|
|
|
|
|
|
|
|
# Flake8 version conflict
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An API client for docker written in Python";
|
|
|
|
homepage = https://github.com/docker/docker-py;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
jgeerds
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|