nixpkgs/pkgs/development/python-modules/docker/default.nix

35 lines
766 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, six, requests, websocket_client
2017-01-27 10:32:28 +00:00
, ipaddress, backports_ssl_match_hostname, docker_pycreds
}:
buildPythonPackage rec {
2018-11-04 10:34:57 +00:00
version = "3.5.1";
pname = "docker";
2017-01-27 10:32:28 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:57 +00:00
sha256 = "fbe82af9b94ccced752527c8de07fa20267f9634b48674ba478a0bb4000a0b1e";
2017-01-27 10:32:28 +00:00
};
propagatedBuildInputs = [
six
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
];
};
}