summary refs log tree commit diff
path: root/pkgs/development/python-modules/linode/default.nix
blob: d0c8b0ff7943831c9c777e81e9d445c26768af2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, requests
}:

buildPythonPackage rec {
  pname = "linode";
  version = "0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573";
  };

  propagatedBuildInputs = [ requests ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/ghickman/linode";
    description = "A thin python wrapper around Linode's API";
    license = licenses.mit;
    maintainers = with maintainers; [ nslqqq ];
  };

}