Skip to content

Commit 709056b

Browse files
committed
python3Pacakges.clx-sdk-xms: init at 0-unstable-2017-01-23
1 parent 777751d commit 709056b

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchFromGitHub,
5+
iso8601,
6+
requests,
7+
setuptools,
8+
unstableGitUpdater,
9+
}:
10+
11+
buildPythonPackage {
12+
pname = "clx-sdk-xms";
13+
version = "0-unstable-2017-01-23";
14+
pyproject = true;
15+
16+
src = fetchFromGitHub {
17+
owner = "clxcommunications";
18+
repo = "sdk-xms-python";
19+
rev = "8d629cd7bcaf91eaafee265a825e3c52191f1425";
20+
hash = "sha256-qMR9OT+QAKZGwDuoZVAtfKD3PQB7rEU/iTRjgACVGBs=";
21+
};
22+
23+
build-system = [ setuptools ];
24+
25+
dependencies = [
26+
iso8601
27+
requests
28+
];
29+
30+
pythonImportsCheck = [ "clx.xms" ];
31+
32+
passthru.updateScript = unstableGitUpdater { };
33+
34+
meta = {
35+
description = "Python SDK for the CLX Communications REST API (XMS) for sending and receiving SMS";
36+
homepage = "https://github.com/clxcommunications/sdk-xms-python";
37+
license = lib.licenses.asl20;
38+
maintainers = [ lib.maintainers.jamiemagee ];
39+
};
40+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2692,6 +2692,8 @@ self: super: with self; {
26922692

26932693
clustershell = callPackage ../development/python-modules/clustershell { };
26942694

2695+
clx-sdk-xms = callPackage ../development/python-modules/clx-sdk-xms { };
2696+
26952697
cma = callPackage ../development/python-modules/cma { };
26962698

26972699
cmaes = callPackage ../development/python-modules/cmaes { };

0 commit comments

Comments
 (0)