about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-02-09 10:27:59 +0100
committerGitHub <noreply@github.com>2024-02-09 10:27:59 +0100
commit8312fb082274d312e6d14137bd88d7efee2f31a3 (patch)
tree02e4d15d24ab3b73021cf466097e259719725fa3
parent2858b8bbe07043b6ac457ea2616f1cbb2e72e431 (diff)
parent565f186c833fb83a08b67ebb0c8f136e2831177e (diff)
downloadnixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar.gz
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar.bz2
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar.lz
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar.xz
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.tar.zst
nixlib-8312fb082274d312e6d14137bd88d7efee2f31a3.zip
Merge pull request #287424 from fabaff/py-aosmith
python311Packages.py-aosmith: 1.0.6 -> 1.0.8
-rw-r--r--pkgs/development/python-modules/py-aosmith/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/py-aosmith/default.nix b/pkgs/development/python-modules/py-aosmith/default.nix
index 28faca5e96fb..b21cdda8f662 100644
--- a/pkgs/development/python-modules/py-aosmith/default.nix
+++ b/pkgs/development/python-modules/py-aosmith/default.nix
@@ -1,14 +1,15 @@
 { lib
+, aiohttp
 , buildPythonPackage
-, pythonOlder
 , fetchFromGitHub
 , poetry-core
-, aiohttp
+, pythonOlder
+, tenacity
 }:
 
 buildPythonPackage rec {
   pname = "py-aosmith";
-  version = "1.0.6";
+  version = "1.0.8";
   pyproject = true;
 
   disabled = pythonOlder "3.10";
@@ -17,7 +18,7 @@ buildPythonPackage rec {
     owner = "bdr99";
     repo = "py-aosmith";
     rev = "refs/tags/${version}";
-    hash = "sha256-4KODe+urqYMbN0+tNwQnvO3A9Zc/Xdo4uhJErn3BYS4=";
+    hash = "sha256-TjBjyWxBPrZEY/o1DZ+GiFTHTW37WwFN0oyJSyGru28=";
   };
 
   nativeBuildInputs = [
@@ -26,6 +27,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     aiohttp
+    tenacity
   ];
 
   pythonImportsCheck = [ "py_aosmith" ];
@@ -36,6 +38,7 @@ buildPythonPackage rec {
   meta = {
     description = "Python client library for A. O. Smith water heaters";
     homepage = "https://github.com/bdr99/py-aosmith";
+    changelog = "https://github.com/bdr99/py-aosmith/releases/tag/${version}";
     license = lib.licenses.mit;
     maintainers = with lib.maintainers; [ dotlambda ];
   };