1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6}: 7 8buildPythonPackage rec { 9 pname = "docker-pycreds"; 10 version = "0.4.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4"; 16 }; 17 18 # require docker-credential-helpers binaries 19 doCheck = false; 20 21 propagatedBuildInputs = [ six ]; 22 23 meta = with lib; { 24 description = "Python bindings for the docker credentials store API."; 25 homepage = "https://github.com/shin-/dockerpy-creds"; 26 license = licenses.asl20; 27 }; 28}