pythonPackages.parsedatetime: 1.5 -> 2.1

This commit is contained in:
schneefux 2016-12-17 16:14:41 +01:00
parent a486850992
commit 95af71e4ef
No known key found for this signature in database
GPG Key ID: 50F2BF336737C2F0

View File

@ -17989,11 +17989,19 @@ in {
parsedatetime = buildPythonPackage rec {
name = "parsedatetime-${version}";
version = "1.5";
version = "2.1";
meta = {
description = "Parse human-readable date/time text";
homepage = "https://github.com/bear/parsedatetime";
license = licenses.asl20;
};
buildInputs = with self; [ PyICU nose ];
src = pkgs.fetchurl {
url = "mirror://pypi/p/parsedatetime/${name}.tar.gz";
sha256 = "1as0mm4ql3z0324nc9bys2s1ngh507i317p16b79rx86wlmvx9ix";
sha256 = "0bdgyw6y3v7bcxlx0p50s8drxsh5bb5cy2afccqr3j90amvpii8p";
};
};