tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
calendar-cli: use pyproject = true
Robert Schütz
2 years ago
451eb783
8d6af726
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
calendar-cli
default.nix
+6
-1
pkgs/tools/networking/calendar-cli/default.nix
···
7
7
python3.pkgs.buildPythonApplication rec {
8
8
pname = "calendar-cli";
9
9
version = "1.0.1";
10
10
+
pyproject = true;
10
11
11
12
src = fetchFromGitHub {
12
13
owner = "tobixen";
···
15
16
hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE=";
16
17
};
17
18
18
18
-
propagatedBuildInputs = with python3.pkgs; [
19
19
+
build-system = with python3.pkgs; [
20
20
+
setuptools
21
21
+
];
22
22
+
23
23
+
dependencies = with python3.pkgs; [
19
24
icalendar
20
25
caldav
21
26
pytz