1{ lib 2, buildPythonPackage 3, cython 4, fetchPypi 5}: 6 7buildPythonPackage rec { 8 pname = "timelib"; 9 version = "0.3.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-0bInBlVxhuYFjaiLoPhYN0AbKuneFX9ZNT3JeNglGHo="; 14 }; 15 16 nativeBuildInputs = [ 17 cython 18 ]; 19 20 meta = with lib; { 21 description = "Parse english textual date descriptions"; 22 homepage = "https://github.com/pediapress/timelib/"; 23 license = licenses.zlib; 24 }; 25 26}