calendar-cli: use pyproject = true

+6 -1
+6 -1
pkgs/tools/networking/calendar-cli/default.nix
··· 7 python3.pkgs.buildPythonApplication rec { 8 pname = "calendar-cli"; 9 version = "1.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "tobixen"; ··· 15 hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE="; 16 }; 17 18 - propagatedBuildInputs = with python3.pkgs; [ 19 icalendar 20 caldav 21 pytz
··· 7 python3.pkgs.buildPythonApplication rec { 8 pname = "calendar-cli"; 9 version = "1.0.1"; 10 + pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "tobixen"; ··· 16 hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE="; 17 }; 18 19 + build-system = with python3.pkgs; [ 20 + setuptools 21 + ]; 22 + 23 + dependencies = with python3.pkgs; [ 24 icalendar 25 caldav 26 pytz