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