Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / timelib / default.nix
blob2667867505a6c82e611d33d9b1ed53de46d2baa7
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "timelib";
9   version = "0.3.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-0bInBlVxhuYFjaiLoPhYN0AbKuneFX9ZNT3JeNglGHo=";
15   };
17   nativeBuildInputs = [
18     cython
19   ];
21   meta = with lib; {
22     description = "Parse english textual date descriptions";
23     homepage = "https://github.com/pediapress/timelib/";
24     license = licenses.zlib;
25   };