about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:13:56 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:13:56 +0200
commitf04c85f1c09767670909a5c749c9bc1b4e3bb7ff (patch)
treebe9a5686dc01add50942f02ad832367e9a315e11
parent69d0075c91522ea61c08178483cf584de0635b1d (diff)
downloadnixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar.gz
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar.bz2
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar.lz
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar.xz
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.tar.zst
nixlib-f04c85f1c09767670909a5c749c9bc1b4e3bb7ff.zip
python312Packages.aiomysensors: refactor
-rw-r--r--pkgs/development/python-modules/aiomysensors/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiomysensors/default.nix b/pkgs/development/python-modules/aiomysensors/default.nix
index 45365f630f2d..14d9a0c89dde 100644
--- a/pkgs/development/python-modules/aiomysensors/default.nix
+++ b/pkgs/development/python-modules/aiomysensors/default.nix
@@ -32,11 +32,11 @@ buildPythonPackage rec {
       --replace-fail " --cov=src --cov-report=term-missing:skip-covered" ""
   '';
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     aiofiles
     asyncio-mqtt
     awesomeversion
@@ -56,10 +56,10 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Library to connect to MySensors gateways";
-    mainProgram = "aiomysensors";
     homepage = "https://github.com/MartinHjelmare/aiomysensors";
     changelog = "https://github.com/MartinHjelmare/aiomysensors/releases/tag/v${version}";
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ fab ];
+    mainProgram = "aiomysensors";
   };
 }