Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 590 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, tzlocal, requests, vobject, lxml, nose }: 3 4buildPythonPackage rec { 5 pname = "caldav"; 6 version = "0.6.1"; 7 8 propagatedBuildInputs = [ tzlocal requests vobject lxml nose ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "eddb7f4e6a3eb5f02eaa2227817a53ac4372d4c4d51876536f4c6f00282f569e"; 13 }; 14 15 meta = with lib; { 16 description = "This project is a CalDAV (RFC4791) client library for Python."; 17 homepage = "https://pythonhosted.org/caldav/"; 18 license = licenses.asl20; 19 maintainers = with maintainers; [ marenz ]; 20 }; 21}