34 lines
766 B
Nix
34 lines
766 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, six, requests, websocket_client
|
|
, ipaddress, backports_ssl_match_hostname, docker_pycreds
|
|
}:
|
|
buildPythonPackage rec {
|
|
version = "3.3.0";
|
|
pname = "docker";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "dc5cc0971a0d36fe94c5ce89bd4adb6c892713500af7b0818708229c3199911a";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
requests
|
|
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
|
|
];
|
|
};
|
|
}
|