Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 573 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools 5, dateutil 6, pytz 7}: 8 9buildPythonPackage rec { 10 version = "4.0.7"; 11 pname = "icalendar"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0fc18d87f66e0b5da84fa731389496cfe18e4c21304e8f6713556b2e8724a7a4"; 16 }; 17 18 buildInputs = [ setuptools ]; 19 propagatedBuildInputs = [ dateutil pytz ]; 20 21 meta = with lib; { 22 description = "A parser/generator of iCalendar files"; 23 homepage = "https://icalendar.readthedocs.org/"; 24 license = licenses.bsd2; 25 maintainers = with maintainers; [ olcai ]; 26 }; 27 28}