94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
47 lines
937 B
Nix
47 lines
937 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pythonOlder
|
|
, requests
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zwave-me-ws";
|
|
version = "0.4.3";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Z-Wave-Me";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-bTchtgr+UbHCpcXMaQA3bTrhasJ79TguvAqLNlpD/2c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
websocket-client
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"zwave_me_ws"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to connect to a ZWave-Me instance";
|
|
homepage = "https://github.com/Z-Wave-Me/zwave-me-ws";
|
|
changelog = "https://github.com/Z-Wave-Me/zwave-me-ws/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|