1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, http_signature
6}:
7
8buildPythonPackage rec {
9 pname = "smartdc";
10 version = "0.2.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "6ffd866fb98386324e189e24d4f7532f66c1b20eece35ca1a6cb4b2a2639fc85";
15 };
16
17 propagatedBuildInputs = [ requests http_signature ];
18
19 meta = with lib; {
20 description = "Joyent SmartDataCenter CloudAPI connector using http-signature authentication via Requests";
21 homepage = "https://github.com/atl/py-smartdc";
22 license = licenses.mit;
23 };
24
25}