Add linode python binding

This commit is contained in:
Nikita Mikhailov 2014-09-27 16:34:52 +07:00 committed by Domen Kožar
parent 0960e30121
commit 28a04ae236
1 changed files with 19 additions and 0 deletions

View File

@ -4515,6 +4515,25 @@ let
}); });
linode = buildPythonPackage rec {
name = "linode-${version}";
version = "0.4";
src = fetchurl {
url = "https://pypi.python.org/packages/source/l/linode/linode-${version}.tar.gz";
md5 = "03a306575cf274719b3206ecee0bda9e";
};
propagatedBuildInputs = [ requests2 ];
meta = {
homepage = "https://github.com/ghickman/linode";
description = "A thin python wrapper around Linode's API.";
license = licenses.mit;
};
};
lockfile = buildPythonPackage rec { lockfile = buildPythonPackage rec {
name = "lockfile-0.9.1"; name = "lockfile-0.9.1";