blob: 751ed9aa3b3bd8b4baad8445110d9a928bff5091 (
about) (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pycryptodome,
setuptools,
}:
buildPythonPackage rec {
pname = "pyrecswitch";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "marcolertora";
repo = "pyrecswitch";
tag = version;
hash = "sha256-z9dOJ7WgUR2ntU6boUInRyKxSPBSoNWGtE3pOZcFYA0=";
};
build-system = [ setuptools ];
dependencies = [ pycryptodome ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "pyrecswitch" ];
meta = {
description = "Pure-python interface for controlling Ankuoo RecSwitch MS6126";
homepage = "https://github.com/marcolertora/pyrecswitch";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|