python3Packages.inwx-domrobot: init at 3.2.0

This commit is contained in:
Amadej Kastelic
2025-06-04 11:34:15 +02:00
parent 07f3e9c94f
commit 021f5eafd8
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "inwx-domrobot";
version = "3.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "inwx";
repo = "python-client";
tag = "v${version}";
hash = "sha256-Nbs3xroJD61NbpaiTdjA3VFxzXIlnqmB1d7SJDj8VN8=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# No tests
doCheck = false;
pythonImportsCheck = [ "INWX" ];
meta = {
description = "INWX Domrobot Python Client";
homepage = "https://github.com/inwx/python-client";
changelog = "https://github.com/inwx/python-client/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.amadejkastelic ];
};
}
+2
View File
@@ -6895,6 +6895,8 @@ self: super: with self; {
invoke = callPackage ../development/python-modules/invoke { };
inwx-domrobot = callPackage ../development/python-modules/inwx-domrobot { };
iocapture = callPackage ../development/python-modules/iocapture { };
iocextract = callPackage ../development/python-modules/iocextract { };