Commit 709056bd authored by Jamie Magee's avatar Jamie Magee
Browse files

python3Pacakges.clx-sdk-xms: init at 0-unstable-2017-01-23

parent 777751dd
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  iso8601,
  requests,
  setuptools,
  unstableGitUpdater,
}:

buildPythonPackage {
  pname = "clx-sdk-xms";
  version = "0-unstable-2017-01-23";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "clxcommunications";
    repo = "sdk-xms-python";
    rev = "8d629cd7bcaf91eaafee265a825e3c52191f1425";
    hash = "sha256-qMR9OT+QAKZGwDuoZVAtfKD3PQB7rEU/iTRjgACVGBs=";
  };

  build-system = [ setuptools ];

  dependencies = [
    iso8601
    requests
  ];

  pythonImportsCheck = [ "clx.xms" ];

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Python SDK for the CLX Communications REST API (XMS) for sending and receiving SMS";
    homepage = "https://github.com/clxcommunications/sdk-xms-python";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2692,6 +2692,8 @@ self: super: with self; {
  clustershell = callPackage ../development/python-modules/clustershell { };
  clx-sdk-xms = callPackage ../development/python-modules/clx-sdk-xms { };
  cma = callPackage ../development/python-modules/cma { };
  cmaes = callPackage ../development/python-modules/cmaes { };