1{
2 lib,
3 buildPythonPackage,
4 cython,
5 fetchPypi,
6}:
7
8buildPythonPackage rec {
9 pname = "timelib";
10 version = "0.3.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-0bInBlVxhuYFjaiLoPhYN0AbKuneFX9ZNT3JeNglGHo=";
16 };
17
18 nativeBuildInputs = [ cython ];
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}