2016-09-24 18:26:15 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
|
|
name = "radicale-${version}";
|
|
|
|
version = "1.1.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/R/Radicale/Radicale-${version}.tar.gz";
|
|
|
|
sha256 = "1c5lv8qca21mndkx350wxv34qypqh6gb4rhzms4anr642clq3jg2";
|
|
|
|
};
|
|
|
|
|
2017-02-01 04:16:13 +00:00
|
|
|
propagatedBuildInputs = stdenv.lib.optionals (!pythonPackages.isPy3k) [
|
2016-09-24 18:26:15 +01:00
|
|
|
pythonPackages.flup
|
|
|
|
pythonPackages.ldap
|
|
|
|
pythonPackages.sqlalchemy
|
|
|
|
];
|
|
|
|
|
2017-02-11 20:34:46 +00:00
|
|
|
doCheck = !pythonPackages.isPy3k;
|
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-03-20 16:13:27 +00:00
|
|
|
maintainers = with maintainers; [ edwtjo pSub aneeshusa ];
|
2016-09-24 18:26:15 +01:00
|
|
|
};
|
|
|
|
}
|