1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "linode";
10 version = "0.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573";
16 };
17
18 propagatedBuildInputs = [ requests ];
19
20 meta = with lib; {
21 homepage = "https://github.com/ghickman/linode";
22 description = "Thin python wrapper around Linode's API";
23 license = licenses.mit;
24 maintainers = [ ];
25 };
26}