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

This commit is contained in:
Martin Weinelt
2025-08-28 22:08:11 +02:00
committed by GitHub
3 changed files with 44 additions and 1 deletions
@@ -0,0 +1,40 @@
{
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 ];
};
}
@@ -5403,7 +5403,8 @@
];
"sinch" =
ps: with ps; [
]; # missing inputs: clx-sdk-xms
clx-sdk-xms
];
"siren" =
ps: with ps; [
];
+2
View File
@@ -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 { };