blob: 0ac6ba8931deae52c5b7b95cbeb0ce0c46b35285 (
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
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pbr,
setuptools,
six,
pytestCheckHook,
mock,
fixtures,
testtools,
}:
buildPythonPackage rec {
pname = "pymochad";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mtreinish";
repo = "pymochad";
tag = version;
hash = "sha256-nwh97sbYkt4F/u02zTDemWEztSco27oJCemd6kTnCMk=";
};
env.PBR_VERSION = version;
build-system = [
pbr
setuptools
];
dependencies = [
six
];
nativeCheckInputs = [
pytestCheckHook
mock
fixtures
testtools
];
pythonImportsCheck = [
"pymochad"
];
meta = {
description = "Python library for sending commands to the mochad TCP gateway daemon for the X10 CMA15A controller";
homepage = "https://github.com/mtreinish/pymochad";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|