9 buildPythonPackage rec {
10 pname = "airtouch4pyapi";
12 format = "setuptools";
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
17 owner = "LonePurpleWolf";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-RiRwebumidn0nijL/e9J74ZYx0DASi1up5BTNxYoGEA=";
23 propagatedBuildInputs = [ numpy ];
25 # Project has no tests
28 pythonImportsCheck = [ "airtouch4pyapi" ];
31 description = "Python API for Airtouch 4 controllers";
32 homepage = "https://github.com/LonePurpleWolf/airtouch4pyapi";
33 license = with licenses; [ mit ];
34 maintainers = with maintainers; [ fab ];