2018-02-25 23:14:56 -08:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-05-07 03:55:45 -07:00
|
|
|
, six, requests, websocket_client
|
2017-01-27 02:32:28 -08:00
|
|
|
, ipaddress, backports_ssl_match_hostname, docker_pycreds
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2019-04-16 10:15:35 -07:00
|
|
|
version = "3.7.2";
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "docker";
|
2017-01-27 02:32:28 -08:00
|
|
|
|
2018-02-25 23:14:56 -08:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 10:15:35 -07:00
|
|
|
sha256 = "c456ded5420af5860441219ff8e51cdec531d65f4a9e948ccd4133e063b72f50";
|
2017-01-27 02:32:28 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six
|
2017-05-07 03:55:45 -07:00
|
|
|
requests
|
2017-01-27 02:32:28 -08: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; [
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|