blob: ecc6d190f2707fa5c058736d703b799cf3d2fcda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
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 = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|