File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
development/python-modules/clx-sdk-xms Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments