summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-01-27 11:32:28 +0100
committerLancelot SIX <lsix@lancelotsix.com>2017-01-27 12:38:05 +0100
commit2aaa39a2499debf7df3241cdd8275812ebfc67b8 (patch)
tree13f769e09279ca84e18a16e3377f1f0d77038bfe /pkgs/development
parent7774b9ea8472bc23603bd588248e63aa5d8978f6 (diff)
downloadnixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar.gz
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar.bz2
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar.lz
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar.xz
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.tar.zst
nixpkgs-2aaa39a2499debf7df3241cdd8275812ebfc67b8.zip
pythonPackages.docker: 1.10.6 -> 2.0.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/docker.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/docker.nix b/pkgs/development/python-modules/docker.nix
new file mode 100644
index 00000000000..12c9aac4c23
--- /dev/null
+++ b/pkgs/development/python-modules/docker.nix
@@ -0,0 +1,34 @@
+{ stdenv, buildPythonPackage, fetchurl
+, six, requests2, websocket_client
+, ipaddress, backports_ssl_match_hostname, docker_pycreds
+}:
+buildPythonPackage rec {
+  name = "docker-${version}";
+  version = "2.0.2";
+
+  src = fetchurl {
+    url = "mirror://pypi/d/docker/${name}.tar.gz";
+    sha256 = "1m16n2r8is1gxwmyr6163na2jdyzsnhhk2qj12l7rzm1sr9nhx7z";
+  };
+
+  propagatedBuildInputs = [
+    six
+    requests2
+    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
+    ];
+  };
+}