mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
python3Packages.zcc-helper: init at 3.5.2
This commit is contained in:
parent
75d166dc39
commit
02b6183c5a
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/zcc-helper/default.nix
Normal file
42
pkgs/development/python-modules/zcc-helper/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue