about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2024-03-31 14:27:15 -0700
committerRobert Schütz <nix@dotlambda.de>2024-03-31 14:27:32 -0700
commit451eb7835dbd42461098070c97d020692c36060f (patch)
tree9fa870a942c997c29ba06ddc5221711aff639a8e
parent8d6af7263701ec1507f06a389e89e9a65e88c25f (diff)
calendar-cli: use pyproject = true
-rw-r--r--pkgs/tools/networking/calendar-cli/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/tools/networking/calendar-cli/default.nix b/pkgs/tools/networking/calendar-cli/default.nix
index 1aae34bf89894..7cac9f4ae0f32 100644
--- a/pkgs/tools/networking/calendar-cli/default.nix
+++ b/pkgs/tools/networking/calendar-cli/default.nix
@@ -7,6 +7,7 @@
 python3.pkgs.buildPythonApplication rec {
   pname = "calendar-cli";
   version = "1.0.1";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "tobixen";
@@ -15,7 +16,11 @@ python3.pkgs.buildPythonApplication rec {
     hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE=";
   };
 
-  propagatedBuildInputs = with python3.pkgs; [
+  build-system = with python3.pkgs; [
+    setuptools
+  ];
+
+  dependencies = with python3.pkgs; [
     icalendar
     caldav
     pytz