Unverified Commit 3355ae50 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Pacakges.clx-sdk-xms: init at 1.0.0 (#434604)

parents 819fa6d2 1ef1b273
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 −1
Original line number Diff line number Diff line
@@ -5403,7 +5403,8 @@
      ];
    "sinch" =
      ps: with ps; [
      ]; # missing inputs: clx-sdk-xms
        clx-sdk-xms
      ];
    "siren" =
      ps: with ps; [
      ];
+2 −0
Original line number Diff line number Diff line
@@ -2698,6 +2698,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 { };