9 buildPythonPackage rec {
13 src = fetchFromGitHub {
16 rev = "refs/tags/v${version}";
17 hash = "sha256-Q3KewvZJMq4YKrpS6ir5rqZkDhxGACDIhlbr3b6lDAs=";
21 substituteInPlace setup.py \
22 --replace "setuptools-git-version" "" \
23 --replace 'version_format="{tag}"' 'version="${version}"'
26 propagatedBuildInputs = [
32 # no tests implemented
35 pythonImportsCheck = [ "pyisy" ];
38 description = "Python module to talk to ISY994 from UDI";
39 homepage = "https://github.com/automicus/PyISY";
40 license = licenses.asl20;
41 maintainers = with maintainers; [ dotlambda ];