summary refs log tree commit diff
path: root/pkgs/development/python-modules/smartdc/default.nix
blob: 2fe9926cab9a03e098c8b4c13ee41835ce9e6940 (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
, http_signature
}:

buildPythonPackage rec {
  pname = "smartdc";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6ffd866fb98386324e189e24d4f7532f66c1b20eece35ca1a6cb4b2a2639fc85";
  };

  propagatedBuildInputs = [ requests http_signature ];

  meta = with stdenv.lib; {
    description = "Joyent SmartDataCenter CloudAPI connector using http-signature authentication via Requests";
    homepage = "https://github.com/atl/py-smartdc";
    license = licenses.mit;
  };

}