10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-GmnwW/IleBlvsGj1YwSPZrOho9uVlWeNzpZX6VbstZ0=";
23 sed -i '/^gitVersion =/d' setup.py
24 substituteInPlace setup.py \
25 --replace-fail 'gitVersion' '"${version}"'
28 build-system = [ setuptools ];
30 dependencies = [ requests ];
35 pythonImportsCheck = [ "nanoleaf" ];
38 description = "Module for interacting with Nanoleaf Aurora lighting";
39 homepage = "https://github.com/software-2/nanoleaf";
40 changelog = "https://github.com/software-2/nanoleaf/releases/tag/${version}";
41 license = licenses.mit;