7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
setuptools,
|
|
typing-extensions,
|
|
zeroconf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyvlx";
|
|
version = "0.2.23";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Julius2342";
|
|
repo = "pyvlx";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-J+oJQHsULrJQNdZqYsl2hufNubMwV1KtG10jZH0jbU4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
typing-extensions
|
|
zeroconf
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "pyvlx" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client to work with Velux units";
|
|
longDescription = ''
|
|
PyVLX uses the Velux KLF 200 interface to control io-Homecontrol
|
|
devices, e.g. Velux Windows.
|
|
'';
|
|
homepage = "https://github.com/Julius2342/pyvlx";
|
|
changelog = "https://github.com/Julius2342/pyvlx/releases/tag/${version}";
|
|
license = with licenses; [ lgpl2Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|