pythonPackages.caldav: unbreak build

This commit is contained in:
Enno Lohmeier 2020-04-21 16:41:59 +02:00 committed by Jon
parent e391c83f0f
commit d1cc4c139b

View file

@ -1,5 +1,12 @@
{ lib, buildPythonPackage, fetchPypi { lib
, tzlocal, requests, vobject, lxml, nose }: , buildPythonPackage
, fetchPypi
, tzlocal
, requests
, vobject
, lxml
, nose
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "caldav"; pname = "caldav";
@ -12,11 +19,16 @@ buildPythonPackage rec {
sha256 = "80c33b143539da3a471148ac89512f67d9df3a5286fae5a023e2ad3923246c0d"; sha256 = "80c33b143539da3a471148ac89512f67d9df3a5286fae5a023e2ad3923246c0d";
}; };
# xandikos is only a optional test dependency, not available for python3
postPatch = ''
substituteInPlace setup.py \
--replace ", 'xandikos'" ""
'';
meta = with lib; { meta = with lib; {
description = "This project is a CalDAV (RFC4791) client library for Python."; description = "This project is a CalDAV (RFC4791) client library for Python.";
homepage = "https://pythonhosted.org/caldav/"; homepage = "https://pythonhosted.org/caldav/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ marenz ]; maintainers = with maintainers; [ marenz ];
broken = true; # missing xandikos package
}; };
} }