Loading pkgs/development/python-modules/systembridgeconnector/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , setuptools , aiohttp , incremental , systembridgemodels }: buildPythonPackage rec { pname = "systembridgeconnector"; version = "4.0.1"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "timmo001"; repo = "system-bridge-connector"; rev = "refs/tags/${version}"; hash = "sha256-dMOhw7e2sCmGItsgGcGxYVCIJM2FBm6IyxIQXPtY+Pg="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ aiohttp incremental systembridgemodels ]; pythonImportsCheck = [ "systembridgeconnector" ]; # upstream has no tests doCheck = false; meta = { changelog = "https://github.com/timmo001/system-bridge-connector/releases/tag/${version}"; description = "This is the connector package for the System Bridge project"; homepage = "https://github.com/timmo001/system-bridge-connector"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dotlambda ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -14198,6 +14198,8 @@ self: super: with self; { systembridge = callPackage ../development/python-modules/systembridge { }; systembridgeconnector = callPackage ../development/python-modules/systembridgeconnector { }; systembridgemodels = callPackage ../development/python-modules/systembridgemodels { }; systemd = callPackage ../development/python-modules/systemd { Loading Loading
pkgs/development/python-modules/systembridgeconnector/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , setuptools , aiohttp , incremental , systembridgemodels }: buildPythonPackage rec { pname = "systembridgeconnector"; version = "4.0.1"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "timmo001"; repo = "system-bridge-connector"; rev = "refs/tags/${version}"; hash = "sha256-dMOhw7e2sCmGItsgGcGxYVCIJM2FBm6IyxIQXPtY+Pg="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ aiohttp incremental systembridgemodels ]; pythonImportsCheck = [ "systembridgeconnector" ]; # upstream has no tests doCheck = false; meta = { changelog = "https://github.com/timmo001/system-bridge-connector/releases/tag/${version}"; description = "This is the connector package for the System Bridge project"; homepage = "https://github.com/timmo001/system-bridge-connector"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dotlambda ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -14198,6 +14198,8 @@ self: super: with self; { systembridge = callPackage ../development/python-modules/systembridge { }; systembridgeconnector = callPackage ../development/python-modules/systembridgeconnector { }; systembridgemodels = callPackage ../development/python-modules/systembridgemodels { }; systemd = callPackage ../development/python-modules/systemd { Loading