summary refs log tree commit diff
path: root/pkgs/development/python-modules/homeassistant-pyozw/default.nix
blob: 559aa905c2ce1938d825055beea42ca140e1d749 (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.7";

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

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