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