about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:17:35 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:17:35 +0200
commit8420cea0746d01950418def1778096d9aa78c8de (patch)
tree3accc034738392fc4f8958dc5732ca9ae631028b
parente3222c751dc2d33e969ef47d468c4837ec7f142d (diff)
downloadnixlib-8420cea0746d01950418def1778096d9aa78c8de.tar
nixlib-8420cea0746d01950418def1778096d9aa78c8de.tar.gz
nixlib-8420cea0746d01950418def1778096d9aa78c8de.tar.bz2
nixlib-8420cea0746d01950418def1778096d9aa78c8de.tar.lz
nixlib-8420cea0746d01950418def1778096d9aa78c8de.tar.xz
nixlib-8420cea0746d01950418def1778096d9aa78c8de.tar.zst
nixlib-8420cea0746d01950418def1778096d9aa78c8de.zip
python312Packages.elkm1-libĀ£: refactor
-rw-r--r--pkgs/development/python-modules/elkm1-lib/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/elkm1-lib/default.nix b/pkgs/development/python-modules/elkm1-lib/default.nix
index f64cbda4885b..534a32540290 100644
--- a/pkgs/development/python-modules/elkm1-lib/default.nix
+++ b/pkgs/development/python-modules/elkm1-lib/default.nix
@@ -13,7 +13,7 @@
 buildPythonPackage rec {
   pname = "elkm1-lib";
   version = "2.2.6";
-  format = "pyproject";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
@@ -24,11 +24,11 @@ buildPythonPackage rec {
     hash = "sha256-5Jmn/ywyg6fmp0ZxPf79ET+JWPF4VjDJMwj/qU6ckS0=";
   };
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     async-timeout
     pyserial-asyncio
   ];