blob: ab7dc9d4b854e55340a2701489afd8409d54a9c3 (
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
|
{
lib,
buildPythonPackage,
isPy27,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "pyaehw4a1";
version = "0.3.9";
format = "setuptools";
disabled = isPy27;
src = fetchFromGitHub {
owner = "bannhead";
repo = "pyaehw4a1";
rev = "v${version}";
sha256 = "0grs7kiyhzlwqzmw2yxkkglnwjfpimgwxbgp0047rlp3k8md7sjv";
};
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pyaehw4a1" ];
meta = {
description = "Python interface for Hisense AEH-W4A1 module";
homepage = "https://github.com/bannhead/pyaehw4a1";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|