about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-22 14:37:36 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-22 07:36:14 -0800
commit766fb6a513933d8016e64891693855abaef13f7b (patch)
treee988548cae50a45d42b7f8b0598fbfa6ec2ae760 /pkgs/development/python-modules
parent0389d5b148940055af8be2fc01caea2b5b841cd6 (diff)
downloadnixlib-766fb6a513933d8016e64891693855abaef13f7b.tar
nixlib-766fb6a513933d8016e64891693855abaef13f7b.tar.gz
nixlib-766fb6a513933d8016e64891693855abaef13f7b.tar.bz2
nixlib-766fb6a513933d8016e64891693855abaef13f7b.tar.lz
nixlib-766fb6a513933d8016e64891693855abaef13f7b.tar.xz
nixlib-766fb6a513933d8016e64891693855abaef13f7b.tar.zst
nixlib-766fb6a513933d8016e64891693855abaef13f7b.zip
python3Packages.aioshelly: 0.5.3 -> 0.5.4
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/aioshelly/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aioshelly/default.nix b/pkgs/development/python-modules/aioshelly/default.nix
index 8f7e9ca94509..f53877e03a3c 100644
--- a/pkgs/development/python-modules/aioshelly/default.nix
+++ b/pkgs/development/python-modules/aioshelly/default.nix
@@ -7,13 +7,13 @@
 
 buildPythonPackage rec {
   pname = "aioshelly";
-  version = "0.5.3";
+  version = "0.5.4";
 
   src = fetchFromGitHub {
     owner = "home-assistant-libs";
     repo = pname;
     rev = version;
-    sha256 = "0177psqfib70vcvf3cg8plbwrilh770cqg8b547icdh5lnqv70b1";
+    sha256 = "sha256-EjzWx3wcmTfB3OmN0OB37K6wYKVO3HzGEIf+uihas8k=";
   };
 
   propagatedBuildInputs = [
@@ -28,6 +28,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python library to control Shelly";
     homepage = "https://github.com/home-assistant-libs/aioshelly";
+    changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${version}";
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ fab ];
   };