Skip to content

Commit 5ace30a

Browse files
authored
radicale: 3.3.0 -> 3.3.1 (#358813)
2 parents 504e3ec + 077802d commit 5ace30a

File tree

2 files changed

+30
-20
lines changed

2 files changed

+30
-20
lines changed
Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,37 @@
1-
{ lib
2-
, python3
3-
, fetchFromGitHub
4-
, nixosTests
1+
{
2+
fetchFromGitHub,
3+
lib,
4+
nixosTests,
5+
python3,
56
}:
67

78
python3.pkgs.buildPythonApplication rec {
89
pname = "radicale";
9-
version = "3.3.0";
10+
version = "3.3.1";
1011
pyproject = true;
1112

1213
src = fetchFromGitHub {
1314
owner = "Kozea";
1415
repo = "Radicale";
1516
rev = "refs/tags/v${version}";
16-
hash = "sha256-S9/bPgItbr6rRr4WX+hmyU1RvKn5gz9FdZjYlr0hnd0=";
17+
hash = "sha256-vHg5faXx7ILiI3tpQ38yxF96DzS7EZCSRHfIW9QbI9Q=";
1718
};
1819

1920
build-system = with python3.pkgs; [
2021
setuptools
2122
];
2223

23-
dependencies = with python3.pkgs; [
24-
defusedxml
25-
passlib
26-
vobject
27-
pika
28-
python-dateutil
29-
pytz # https://github.com/Kozea/Radicale/issues/816
30-
] ++ passlib.optional-dependencies.bcrypt;
24+
dependencies =
25+
with python3.pkgs;
26+
[
27+
defusedxml
28+
passlib
29+
vobject
30+
pika
31+
python-dateutil
32+
pytz # https://github.com/Kozea/Radicale/issues/816
33+
]
34+
++ passlib.optional-dependencies.bcrypt;
3135

3236
__darwinAllowLocalNetworking = true;
3337

@@ -40,11 +44,14 @@ python3.pkgs.buildPythonApplication rec {
4044
inherit (nixosTests) radicale;
4145
};
4246

43-
meta = with lib; {
47+
meta = {
4448
homepage = "https://radicale.org/v3.html";
4549
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
4650
description = "CalDAV and CardDAV server";
47-
license = licenses.gpl3Plus;
48-
maintainers = with maintainers; [ dotlambda erictapen ];
51+
license = lib.licenses.gpl3Plus;
52+
maintainers = with lib.maintainers; [
53+
dotlambda
54+
erictapen
55+
];
4956
};
5057
}

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)