blob: a511231f6fec84e9fedf3aaedbec14ca15e8746c (
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
38
39
40
41
42
43
|
{
aiodns,
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pyjvcprojector";
version = "1.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "SteveEasley";
repo = "pyjvcprojector";
tag = "v${version}";
hash = "sha256-j8/PHGElJf45SptvIWDt1M1PEkbtHCW3XDQezUHdOM4=";
};
build-system = [ setuptools ];
dependencies = [
aiodns
];
pythonImportsCheck = [ "jvcprojector" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = {
changelog = "https://github.com/SteveEasley/pyjvcprojector/releases/tag/${src.tag}";
description = "Python library for controlling a JVC Projector over a network connection";
homepage = "https://github.com/SteveEasley/pyjvcprojector";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|