19 buildPythonPackage rec {
20 pname = "airtouch5py";
24 disabled = pythonOlder "3.10";
26 src = fetchFromGitHub {
29 rev = "refs/tags/${version}";
30 hash = "sha256-MpwppyAWDiA3CZXCIUQ/vidzcxKXZJSlrFRhmrPMgCE=";
33 build-system = [ poetry-core ];
34 nativeBuildInputs = [ pythonRelaxDepsHook ];
35 pythonRelaxDeps = [ "crc" ];
42 nativeCheckInputs = [ pytestCheckHook ];
44 pythonImportsCheck = [ "airtouch5py" ];
47 changelog = "https://github.com/danzel/airtouch5py/releases/tag/${version}";
48 description = "Python client for the airtouch 5";
49 homepage = "https://github.com/danzel/airtouch5py";
50 license = licenses.asl20;
51 maintainers = with maintainers; [ jamiemagee ];