biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / systembridge / default.nix
blob3af2cb7c4964d4b3f0f74906ca4cc8551da3b87d
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   websockets,
7 }:
9 buildPythonPackage rec {
10   pname = "systembridge";
11   version = "2.3.1";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "timmo001";
16     repo = "system-bridge-connector-py";
17     rev = "v${version}";
18     hash = "sha256-Ts8zPRK6S5iLnl19Y/Uz0YAh6hDeVRNBY6HsvLwdUFw=";
19   };
21   propagatedBuildInputs = [
22     aiohttp
23     websockets
24   ];
26   # Project has no tests
27   doCheck = false;
29   pythonImportsCheck = [ "systembridge" ];
31   meta = with lib; {
32     description = "Python module for connecting to System Bridge";
33     homepage = "https://github.com/timmo001/system-bridge-connector-py";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ fab ];
36   };