python3Packages.zcc-helper: init at 3.5.2

This commit is contained in:
Robert Schütz 2025-06-04 18:51:30 -07:00
parent 75d166dc39
commit 02b6183c5a
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{
buildPythonPackage,
fetchFromBitbucket,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "zcc-helper";
version = "3.5.2";
pyproject = true;
src = fetchFromBitbucket {
owner = "mark_hannon";
repo = "zcc";
rev = "release_${version}";
hash = "sha256-6cpLpzzJPoyWaldXZzptV2LY5aYmRtVf0rd1Ye71VG0=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "zcc" ];
nativeCheckInputs = [
pytestCheckHook
];
disabledTestPaths = [
# tests require running a server
"tests/test_controller.py"
# fixture 'when' not found
"tests/test_socket.py"
];
meta = {
description = "ZIMI ZCC helper module";
homepage = "https://bitbucket.org/mark_hannon/zcc";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -19556,6 +19556,8 @@ self: super: with self; {
zcbor = callPackage ../development/python-modules/zcbor { };
zcc-helper = callPackage ../development/python-modules/zcc-helper { };
zconfig = callPackage ../development/python-modules/zconfig { };
zdaemon = callPackage ../development/python-modules/zdaemon { };