summary refs log tree commit diff
path: root/pkgs/development/python-modules/homeassistant-pyozw/default.nix
blob: 5851d62842b6b6667f20c585d5faddf9e25c4027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ python_openzwave, fetchPypi }:

python_openzwave.overridePythonAttrs (oldAttrs: rec {
  pname = "homeassistant_pyozw";
  version = "0.1.4";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "a4ec26b95dba630df8c95c617c510e4a33db93a6a39e8a97056eec7dc9a49d1e";
  };

  meta.homepage = https://github.com/home-assistant/python-openzwave;
})