depot/third_party/nixpkgs/pkgs/development/python-modules/timelib/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

22 lines
454 B
Nix

{ 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;
};
}