Skip to content

Commit 077802d

Browse files
committed
python312Packages.radicale-infcloud: modernize
1 parent 8dca276 commit 077802d

File tree

1 file changed

+6
-3
lines changed
  • pkgs/development/python-modules/radicale-infcloud

1 file changed

+6
-3
lines changed

pkgs/development/python-modules/radicale-infcloud/default.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
fetchFromGitHub,
44
buildPythonPackage,
55
radicale,
6+
setuptools,
67
}:
78

89
buildPythonPackage {
910
pname = "radicale-infcloud";
1011
version = "unstable-2022-04-18";
11-
format = "setuptools";
12+
pyproject = true;
1213

1314
src = fetchFromGitHub {
1415
owner = "Unrud";
@@ -17,7 +18,9 @@ buildPythonPackage {
1718
hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
1819
};
1920

20-
propagatedBuildInputs = [ radicale ];
21+
build-system = [ setuptools ];
22+
23+
dependencies = [ radicale ];
2124

2225
# has no tests
2326
doCheck = false;
@@ -29,7 +32,7 @@ buildPythonPackage {
2932
description = "Integrate InfCloud into Radicale's web interface";
3033
license = with licenses; [
3134
agpl3Plus
32-
gpl3
35+
gpl3Plus
3336
];
3437
maintainers = with maintainers; [ erictapen ];
3538
};

0 commit comments

Comments
 (0)