python3Packages.zcc-helper: init at 3.5.2 (#414110)

This commit is contained in:
dotlambda 2025-06-08 08:37:13 -07:00 committed by GitHub
commit 70543b7ff7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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

@ -19616,6 +19616,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 { };