aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/timelib/default.nix
blob: 559dd0dd92f0929a45a7f8aaf7863bc1a5482c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "timelib";
  version = "0.2.5";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "6ac9f79b09b63bbc07db88525c1f62de1f6d50b0fd9937a0cb05e3d38ce0af45";
  };

  meta = with stdenv.lib; {
    description = "Parse english textual date descriptions";
    homepage = "https://github.com/pediapress/timelib/";
    license = licenses.zlib;
  };

}