nixpkgs/pkgs/development/python-modules/docker-pycreds/default.nix
2018-06-21 07:49:08 +02:00

23 lines
557 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "docker-pycreds";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "8b0e956c8d206f832b06aa93a710ba2c3bcbacb5a314449c040b0b814355bbff";
};
# require docker-credential-helpers binaries
doCheck = false;
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Python bindings for the docker credentials store API.";
homepage = https://github.com/shin-/dockerpy-creds;
license = licenses.asl20;
};
}