3
0
Fork 0
forked from mirrors/nixpkgs

radicale3: init at 3.0.3

This commit is contained in:
Robert Schütz 2020-06-20 14:18:58 +02:00
parent fb6fb89c6f
commit 45bf7757c0
3 changed files with 41 additions and 2 deletions

View file

@ -0,0 +1,38 @@
{ lib, python3, fetchFromGitHub }:
python3.pkgs.buildPythonApplication rec {
pname = "radicale";
version = "3.0.3";
# No tests in PyPI tarball
src = fetchFromGitHub {
owner = "Kozea";
repo = "Radicale";
rev = version;
sha256 = "170mqxlnfzx15img4wb71axq9cnxwllk5cabsv8i008q7wyjqp0n";
};
propagatedBuildInputs = with python3.pkgs; [
defusedxml
passlib
vobject
python-dateutil
setuptools
];
checkInputs = with python3.pkgs; [
pytestrunner
pytest
pytestcov
pytest-flake8
pytest-isort
waitress
];
meta = with lib; {
homepage = "https://www.radicale.org/3.0.html";
description = "CalDAV and CardDAV server";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -16302,9 +16302,10 @@ in
};
radicale1 = callPackage ../servers/radicale/1.x.nix { };
radicale2 = callPackage ../servers/radicale { };
radicale2 = callPackage ../servers/radicale/2.x.nix { };
radicale3 = callPackage ../servers/radicale/3.x.nix { };
radicale = radicale2;
radicale = radicale3;
rake = callPackage ../development/tools/build-managers/rake { };