aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/timelib/default.nix
blob: 39ff4b6de15ecc702a4da2fefd2e31412e956cee (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.4";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb";
  };

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

}