1{ lib, buildPythonPackage, fetchPypi, six }:
2
3buildPythonPackage rec {
4 pname = "docker-pycreds";
5 version = "0.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4";
10 };
11
12 # require docker-credential-helpers binaries
13 doCheck = false;
14
15 propagatedBuildInputs = [ six ];
16
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 };
22}