python: caldav: fixed dependencies

This commit is contained in:
Markus Schmidl 2019-08-25 13:20:26 +02:00
parent 8f8d9abca4
commit de81511446
No known key found for this signature in database
GPG Key ID: D46166FD1DEEE69C

View File

@ -1,11 +1,11 @@
{ lib, buildPythonPackage, fetchPypi
, tzlocal, requests, vobject, lxml }:
, tzlocal, requests, vobject, lxml, nose }:
buildPythonPackage rec {
pname = "caldav";
version = "0.6.1";
propagatedBuildInputs = [ tzlocal requests vobject lxml ];
propagatedBuildInputs = [ tzlocal requests vobject lxml nose ];
src = fetchPypi {
inherit pname version;