2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-27 14:17:53 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "timelib";
|
2020-08-29 12:41:52 +01:00
|
|
|
version = "0.2.5";
|
2018-10-27 14:17:53 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2020-08-29 12:41:52 +01:00
|
|
|
sha256 = "6ac9f79b09b63bbc07db88525c1f62de1f6d50b0fd9937a0cb05e3d38ce0af45";
|
2018-10-27 14:17:53 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-27 14:17:53 +01:00
|
|
|
description = "Parse english textual date descriptions";
|
|
|
|
homepage = "https://github.com/pediapress/timelib/";
|
|
|
|
license = licenses.zlib;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|