1{ lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }: 2 3buildPythonPackage rec { 4 version = "0.9.6.1"; 5 pname = "vobject"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "96512aec74b90abb71f6b53898dd7fe47300cc940104c4f79148f0671f790101"; 10 }; 11 12 disabled = isPyPy; 13 14 propagatedBuildInputs = [ python-dateutil ]; 15 16 checkPhase = "${python.interpreter} tests.py"; 17 18 meta = with lib; { 19 description = "Module for reading vCard and vCalendar files"; 20 homepage = "http://eventable.github.io/vobject/"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ ]; 23 }; 24}