Skip to content

Commit 3355ae5

Browse files
authored
python3Pacakges.clx-sdk-xms: init at 1.0.0 (#434604)
2 parents 819fa6d + 1ef1b27 commit 3355ae5

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
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/servers/home-assistant/component-packages.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5403,7 +5403,8 @@
54035403
];
54045404
"sinch" =
54055405
ps: with ps; [
5406-
]; # missing inputs: clx-sdk-xms
5406+
clx-sdk-xms
5407+
];
54075408
"siren" =
54085409
ps: with ps; [
54095410
];

pkgs/top-level/python-packages.nix

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

26992699
clustershell = callPackage ../development/python-modules/clustershell { };
27002700

2701+
clx-sdk-xms = callPackage ../development/python-modules/clx-sdk-xms { };
2702+
27012703
cma = callPackage ../development/python-modules/cma { };
27022704

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

0 commit comments

Comments
 (0)