python3Packages.pyaehw4a1: init at 0.3.9

This commit is contained in:
Robert Schütz 2021-06-23 15:10:51 +02:00
parent 72dac3d449
commit aac0961f4d
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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 ];
};
}

View file

@ -5278,6 +5278,8 @@ in {
ppdeep = callPackage ../development/python-modules/ppdeep { };
pyaehw4a1 = callPackage ../development/python-modules/pyaehw4a1 { };
pyatag = callPackage ../development/python-modules/pyatag { };
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };