Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 35 lines 880 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchgit 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 version = "asynkdev"; 9 pname = "caldavclientlibrary-asynk"; 10 11 src = fetchgit { 12 url = "https://github.com/skarra/CalDAVClientLibrary.git"; 13 rev = "06699b08190d50cc2636b921a654d67db0a967d1"; 14 sha256 = "157q32251ac9x3gdshgrjwsy48nq74vrzviswvph56h9wa8ksnnk"; 15 }; 16 17 disabled = isPy3k; 18 19 meta = with stdenv.lib; { 20 description = "A Python library and tool for CalDAV"; 21 22 longDescription = '' 23 CalDAVCLientLibrary is a Python library and tool for CalDAV. 24 25 This package is the unofficial CalDAVCLientLibrary Python 26 library maintained by the author of Asynk and is needed for 27 that package. 28 ''; 29 30 homepage = https://github.com/skarra/CalDAVClientLibrary/tree/asynkdev/; 31 maintainers = with maintainers; [ pjones ]; 32 broken = true; # 2018-04-11 33 }; 34 35}