nixpkgs/pkgs/development/python-modules/caldav/default.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

2020-04-21 14:41:59 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, icalendar
2020-04-21 14:41:59 +00:00
, lxml
2020-08-18 07:49:30 +00:00
, mock
2020-04-21 14:41:59 +00:00
, nose
, pytz
, requests
, six
, tzlocal
, vobject
2020-04-21 14:41:59 +00:00
}:
2019-04-29 08:49:35 +00:00
buildPythonPackage rec {
pname = "caldav";
version = "0.8.0";
2019-04-29 08:49:35 +00:00
src = fetchFromGitHub {
owner = "python-caldav";
repo = pname;
rev = "v${version}";
sha256 = "11q3svns3a2ywfci739krxbh67cx691qja772wq22606blyygyjy";
2019-04-29 08:49:35 +00:00
};
2020-08-18 07:49:30 +00:00
nativeBuildInputs = lib.optionals (pythonOlder "3.5") [ mock ];
propagatedBuildInputs = [ six requests vobject lxml ]
++ lib.optionals (pythonOlder "3.6") [ pytz tzlocal ];
checkInputs = [
icalendar
nose
tzlocal
];
checkPhase = ''
nosetests tests
'';
# xandikos and radicale is only a optional test dependency, not available for python3
2020-04-21 14:41:59 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace ", 'xandikos'" "" \
--replace ", 'radicale'" ""
2020-04-21 14:41:59 +00:00
'';
pythonImportsCheck = [ "caldav" ];
2019-04-29 08:49:35 +00:00
meta = with lib; {
description = "This project is a CalDAV (RFC4791) client library for Python.";
homepage = "https://github.com/python-caldav/caldav";
2019-04-29 08:49:35 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ marenz ];
#broken = true; # requires radicale which is not packaged yet
2019-04-29 08:49:35 +00:00
};
}