c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
47 lines
1 KiB
Nix
47 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, aiohttp
|
|
, incremental
|
|
, systembridgemodels
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "systembridgeconnector";
|
|
version = "4.0.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timmo001";
|
|
repo = "system-bridge-connector";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-CbLm2CHofgtaTHuGDexVEKmy8+ovvvGJOO3iiAimLTg=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|