Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7ae9c3f3ceed
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00b934f66f56
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 16, 2019

  1. pythonPackages.docker: 4.0.2 -> 4.1.0

    Jonathan Ringer authored and FRidh committed Oct 16, 2019
    Copy the full SHA
    00b934f View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/python-modules/docker/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/docker/default.nix
Original file line number Diff line number Diff line change
@@ -9,19 +9,19 @@
}:

buildPythonPackage rec {
version = "4.0.2";
pname = "docker";
version = "4.1.0";

src = fetchPypi {
inherit pname version;
sha256 = "0r1i46h8x1vfvadayyvmh5hc6mpzgv3vvp6pv4g1wavamya2wnyc";
sha256 = "1hdgics03fz2fbhalzys7a7kjj54jnl5a37h6lzdgym41gkwa1kf";
};

propagatedBuildInputs = [
six
paramiko
requests
six
websocket_client
paramiko
] ++ stdenv.lib.optional isPy27 backports_ssl_match_hostname;

checkInputs = [
@@ -36,7 +36,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "An API client for docker written in Python";
homepage = https://github.com/docker/docker-py;
homepage = "https://github.com/docker/docker-py";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};