ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / docker-pycreds / default.nix
blobc022d62bfa848d53884b937a51f880f4c60f5e50
1 { lib, buildPythonPackage, fetchPypi, six }:
3 buildPythonPackage rec {
4   pname = "docker-pycreds";
5   version = "0.4.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4";
10   };
12   # require docker-credential-helpers binaries
13   doCheck = false;
15   propagatedBuildInputs = [ six ];
17   meta = with lib; {
18     description = "Python bindings for the docker credentials store API.";
19     homepage = "https://github.com/shin-/dockerpy-creds";
20     license = licenses.asl20;
21   };