evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / timelib / default.nix
blob15e7251dd6a0114608545890bc4b14dce354ea61
2   lib,
3   buildPythonPackage,
4   cython,
5   fetchPypi,
6 }:
8 buildPythonPackage rec {
9   pname = "timelib";
10   version = "0.3.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-0bInBlVxhuYFjaiLoPhYN0AbKuneFX9ZNT3JeNglGHo=";
16   };
18   nativeBuildInputs = [ cython ];
20   meta = with lib; {
21     description = "Parse english textual date descriptions";
22     homepage = "https://github.com/pediapress/timelib/";
23     license = licenses.zlib;
24   };