blob: 1506bfd80a78850fe28ac05775d23ecff9388d3c (
plain) (
blame)
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 = with lib; {
description = "Python interface for Hisense AEH-W4A1 module";
homepage = "https://github.com/bannhead/pyaehw4a1";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}
|