17 buildPythonPackage rec {
18 pname = "systembridgeconnector";
22 disabled = pythonOlder "3.11";
24 src = fetchFromGitHub {
26 repo = "system-bridge-connector";
27 rev = "refs/tags/${version}";
28 hash = "sha256-AzAN7reBAI4atEFutgFrdQHFy/Qc90PQxwSaHaftn5Q=";
32 substituteInPlace requirements_setup.txt \
33 --replace-fail ">=" " #"
35 substituteInPlace systembridgeconnector/_version.py \
36 --replace-fail ", dev=0" ""
44 pythonRelaxDeps = [ "incremental" ];
53 pythonImportsCheck = [ "systembridgeconnector" ];
64 "test_wait_for_response_timeout"
67 pytestFlagsArray = [ "--snapshot-warn-unused" ];
70 changelog = "https://github.com/timmo001/system-bridge-connector/releases/tag/${version}";
71 description = "This is the connector package for the System Bridge project";
72 homepage = "https://github.com/timmo001/system-bridge-connector";
73 license = lib.licenses.asl20;
74 maintainers = with lib.maintainers; [ dotlambda ];