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

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

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

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