about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aionotion
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-03 23:33:19 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-04 01:03:57 +0200
commita1940b3da72d915b19c92fa10e5edb70eac5d425 (patch)
tree5e9f4544ab80f3e81d5b962656eaf4697d3b4588 /pkgs/development/python-modules/aionotion
parent7a4d8131fadc898c20c353007a52d5429959d2f3 (diff)
python310Packages.aionotion: 2022.10.0 -> 2023.04.2
https://github.com/bachya/aionotion/releases/tag/2023.04.0
https://github.com/bachya/aionotion/releases/tag/2023.04.1
https://github.com/bachya/aionotion/releases/tag/2023.04.2
Diffstat (limited to 'pkgs/development/python-modules/aionotion')
-rw-r--r--pkgs/development/python-modules/aionotion/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aionotion/default.nix b/pkgs/development/python-modules/aionotion/default.nix
index 1de22b698c2ab..9c31395ef62b6 100644
--- a/pkgs/development/python-modules/aionotion/default.nix
+++ b/pkgs/development/python-modules/aionotion/default.nix
@@ -4,6 +4,7 @@
 , buildPythonPackage
 , fetchFromGitHub
 , poetry-core
+, pydantic
 , pytest-aiohttp
 , pytest-asyncio
 , pytest-cov
@@ -13,7 +14,7 @@
 
 buildPythonPackage rec {
   pname = "aionotion";
-  version = "2022.10.0";
+  version = "2023.04.2";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
@@ -22,7 +23,7 @@ buildPythonPackage rec {
     owner = "bachya";
     repo = pname;
     rev = version;
-    hash = "sha256-DJkqFj87N8OlWHNto+tInj8QvVoNA9faLBb/pBbQl0U=";
+    hash = "sha256-pMBUhCm16+Zs6xZExLB4Z5y+OKNHX+utjsfMLeYUSWY=";
   };
 
   nativeBuildInputs = [
@@ -31,6 +32,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     aiohttp
+    pydantic
   ];
 
   nativeCheckInputs = [