Files
2026-07-15 14:04:39 -04:00

38 lines
834 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pycryptodomex,
setuptools,
}:
buildPythonPackage rec {
pname = "motionblinds";
version = "0.6.30";
pyproject = true;
src = fetchFromGitHub {
owner = "starkillerOG";
repo = "motion-blinds";
tag = version;
hash = "sha256-xV9od7xTKBBE4f4Mqg57Mp0MXO8/lG+bBKzG+jv6gf4=";
};
build-system = [ setuptools ];
dependencies = [ pycryptodomex ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "motionblinds" ];
meta = {
description = "Python library for interfacing with Motion Blinds";
homepage = "https://github.com/starkillerOG/motion-blinds";
changelog = "https://github.com/starkillerOG/motion-blinds/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}