mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
setuptools,
|
|
typing-extensions,
|
|
zeroconf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyvlx";
|
|
version = "0.2.25";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Julius2342";
|
|
repo = "pyvlx";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-c0HlmqLvpIn2GXorOArBKJ0YzvWz1spmhWwm6Gow2iU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
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 = licenses.lgpl2Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|