2017-07-25 08:01:08 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
2016-09-24 18:26:15 +01:00
|
|
|
|
2017-07-25 08:01:08 +01:00
|
|
|
let
|
2017-11-10 19:42:59 +00:00
|
|
|
version = "2.1.8";
|
|
|
|
sha256 = "0fnsk61s328dg16iv0chqxayni8ahkbcb84z012w0d9417i806lc";
|
2017-07-25 08:01:08 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication {
|
2016-09-24 18:26:15 +01:00
|
|
|
name = "radicale-${version}";
|
2017-07-25 08:01:08 +01:00
|
|
|
inherit version;
|
2016-09-24 18:26:15 +01:00
|
|
|
|
2017-07-25 08:01:08 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Kozea";
|
|
|
|
repo = "Radicale";
|
|
|
|
rev = version;
|
|
|
|
inherit sha256;
|
2016-09-24 18:26:15 +01:00
|
|
|
};
|
|
|
|
|
2017-07-25 08:01:08 +01:00
|
|
|
doCheck = false;
|
2016-09-24 18:26:15 +01:00
|
|
|
|
2017-07-25 08:01:08 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
vobject
|
|
|
|
passlib
|
2017-12-09 16:45:25 +00:00
|
|
|
pytz
|
2017-07-25 08:01:08 +01:00
|
|
|
];
|
2016-09-24 18:26:15 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.radicale.org/;
|
|
|
|
description = "CalDAV CardDAV server";
|
|
|
|
longDescription = ''
|
|
|
|
The Radicale Project is a complete CalDAV (calendar) and CardDAV
|
|
|
|
(contact) server solution. Calendars and address books are available for
|
|
|
|
both local and remote access, possibly limited through authentication
|
|
|
|
policies. They can be viewed and edited by calendar and contact clients
|
|
|
|
on mobile phones or computers.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3Plus;
|
2017-05-03 00:14:03 +01:00
|
|
|
platforms = platforms.all;
|
2017-07-25 08:01:08 +01:00
|
|
|
maintainers = with maintainers; [ edwtjo pSub aneeshusa infinisil ];
|
2016-09-24 18:26:15 +01:00
|
|
|
};
|
|
|
|
}
|