depot/third_party/nixpkgs/pkgs/development/python-modules/smartdc/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
550 B
Nix

{ lib
, 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 lib; {
description = "Joyent SmartDataCenter CloudAPI connector using http-signature authentication via Requests";
homepage = "https://github.com/atl/py-smartdc";
license = licenses.mit;
};
}