about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-18 17:03:58 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-28 02:29:59 +0000
commit808909d0db48b21784ba87ab23ad195c4bdf9d37 (patch)
treeeeee4210a31fd873dc1f1a9d53440657797fd7ca /pkgs/development
parent0d0a9776a273fa6156b8611169929c9e071e6c71 (diff)
downloadnixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar.gz
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar.bz2
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar.lz
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar.xz
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.tar.zst
nixlib-808909d0db48b21784ba87ab23ad195c4bdf9d37.zip
hass-nabucasa: 0.31 -> 0.32.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/hass-nabucasa/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/hass-nabucasa/default.nix b/pkgs/development/python-modules/hass-nabucasa/default.nix
index 87a4a21568c8..e13cae339601 100644
--- a/pkgs/development/python-modules/hass-nabucasa/default.nix
+++ b/pkgs/development/python-modules/hass-nabucasa/default.nix
@@ -1,14 +1,16 @@
-{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, acme, aiohttp, snitun, attrs, pytest-aiohttp, warrant, pytest }:
+{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
+, acme, aiohttp, snitun, attrs, pycognito, warrant
+, pytest-aiohttp, asynctest, pytest  }:
 
 buildPythonPackage rec {
   pname = "hass-nabucasa";
-  version = "0.31";
+  version = "0.32.2";
 
   src = fetchFromGitHub {
     owner = "nabucasa";
     repo = pname;
     rev = version;
-    sha256 = "0hxdvdj41gq5ryafjhrcgf6y8l33lyf45a1vgwwbk0q29sir9bnr";
+    sha256 = "1hfi5q222kgbgrj5yvr4lbhca49hcs6sc2yhxc4pjxqsc12bv1f1";
   };
 
   # upstreamed in https://github.com/NabuCasa/hass-nabucasa/pull/119
@@ -17,13 +19,13 @@ buildPythonPackage rec {
     cat setup.py
   '';
 
-  propagatedBuildInputs = [ acme aiohttp snitun attrs warrant ];
+  propagatedBuildInputs = [ acme aiohttp snitun attrs warrant pycognito ];
 
-  checkInputs = [ pytest pytest-aiohttp ];
+  checkInputs = [ pytest pytest-aiohttp asynctest ];
 
   checkPhase = ''
     pytest tests/
-    '';
+  '';
 
   meta = with lib; {
     homepage = "https://github.com/NabuCasa/hass-nabucasa";