about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-03-23 13:57:30 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-23 22:58:43 +0100
commit2ce562757c95598522a45be19fe67826fa3583e3 (patch)
treeb4ad031221df4e0b979c6150362448eda9642837
parent5ee0e14b331a3bf78749c27ae905e09981a983fa (diff)
downloadnixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar.gz
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar.bz2
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar.lz
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar.xz
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.tar.zst
nixlib-2ce562757c95598522a45be19fe67826fa3583e3.zip
python311Packages.bluecurrent-api: 1.2.1 -> 1.2.3
-rw-r--r--pkgs/development/python-modules/bluecurrent-api/default.nix16
-rw-r--r--pkgs/servers/home-assistant/default.nix4
2 files changed, 9 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/bluecurrent-api/default.nix b/pkgs/development/python-modules/bluecurrent-api/default.nix
index 7873cb62696a..26c631706a17 100644
--- a/pkgs/development/python-modules/bluecurrent-api/default.nix
+++ b/pkgs/development/python-modules/bluecurrent-api/default.nix
@@ -2,7 +2,6 @@
 , buildPythonPackage
 , pythonOlder
 , fetchPypi
-, pythonRelaxDepsHook
 , setuptools
 , pytz
 , websockets
@@ -13,26 +12,21 @@
 
 buildPythonPackage rec {
   pname = "bluecurrent-api";
-  version = "1.2.1";
+  version = "1.2.3";
   pyproject = true;
 
-  disabled = pythonOlder "3.9";
+  disabled = pythonOlder "3.11";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-vr6mehGRXHW+fP2luLpD14igCdIgJI5NXzaa+bEife0=";
+    hash = "sha256-mWRTSMS68+J1Z4PYOFF/UvofSqV1wv0gjiTACEWDfNg=";
   };
 
-  nativeBuildInputs = [
-    pythonRelaxDepsHook
+  build-system = [
     setuptools
   ];
 
-  pythonRemoveDeps = [
-    "asyncio"
-  ];
-
-  propagatedBuildInputs = [
+  dependencies = [
     pytz
     websockets
   ];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 8071708013aa..797b2ecae5f6 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -141,6 +141,10 @@ let
           inherit version;
           hash = "sha256-XHVdtkiG0ff/OY8g+W5iur7OAyhhk1UGA+XUfB2L8/o=";
         };
+        build-system = oldAttrs.build-system ++ (with self; [
+          pythonRelaxDepsHook
+        ]);
+        pythonRemoveDeps = [ "asyncio" ];
       });
 
       debugpy = super.debugpy.overridePythonAttrs (oldAttrs: {