Add linode python binding
This commit is contained in:
parent
0960e30121
commit
28a04ae236
|
@ -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";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue