mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, icalendar
|
|
, lxml
|
|
, mock
|
|
, nose
|
|
, pytz
|
|
, requests
|
|
, six
|
|
, tzlocal
|
|
, vobject
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "caldav";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-caldav";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1shfj67kq6qzd0ngyfk09hpzfggybcfxv5s7hqs87nq9l51bssv8";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optionals (pythonOlder "3.5") [ mock ];
|
|
propagatedBuildInputs = [ six requests vobject lxml ]
|
|
++ lib.optionals (pythonOlder "3.6") [ pytz tzlocal ];
|
|
|
|
checkInputs = [
|
|
icalendar
|
|
nose
|
|
tzlocal
|
|
];
|
|
|
|
# xandikos and radicale is only a optional test dependency, not available for python3
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace ", 'xandikos'" "" \
|
|
--replace ", 'radicale'" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "caldav" ];
|
|
|
|
meta = with lib; {
|
|
description = "This project is a CalDAV (RFC4791) client library for Python.";
|
|
homepage = "https://pythonhosted.org/caldav/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ marenz ];
|
|
#broken = true; # requires radicale which is not packaged yet
|
|
};
|
|
}
|