mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
32 lines
641 B
Nix
32 lines
641 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, isPy27
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyaehw4a1";
|
||
|
version = "0.3.9";
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|