about summary refs log tree commit diff
path: root/pkgs/development/python-modules/homeassistant-pyozw
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-11-10 20:12:28 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-11-12 11:10:12 +0100
commit92148ea5a0ce954a850dfb57528079a4c7505d08 (patch)
treeb06cfc4a90c7239fea9fb73abd50c1cf394bc8a1 /pkgs/development/python-modules/homeassistant-pyozw
parent484a5c6152e908d15754260e8b7bcd8330593250 (diff)
python3.pkgs.homeassistant-pyozw: init at 0.1.0
Diffstat (limited to 'pkgs/development/python-modules/homeassistant-pyozw')
-rw-r--r--pkgs/development/python-modules/homeassistant-pyozw/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/homeassistant-pyozw/default.nix b/pkgs/development/python-modules/homeassistant-pyozw/default.nix
new file mode 100644
index 0000000000000..c4410cfdbcf19
--- /dev/null
+++ b/pkgs/development/python-modules/homeassistant-pyozw/default.nix
@@ -0,0 +1,14 @@
+{ python_openzwave, fetchPypi }:
+
+python_openzwave.overridePythonAttrs (oldAttrs: rec {
+  pname = "homeassistant_pyozw";
+  version = "0.1.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "bca4062906f65db9b4668388e6755d6ea3ee9e1b02ad3ed81738bb4d32a79342";
+  };
+
+  meta.homepage = https://github.com/home-assistant/python-openzwave;
+})