pythonPackages.arrow: 0.5.0 -> 0.7.0

This commit is contained in:
Théophane Hufschmitt 2016-03-07 16:29:51 +01:00
parent e9cd37110d
commit 6f65412358

View File

@ -934,18 +934,22 @@ in modules // {
arrow = buildPythonPackage rec {
name = "arrow-${version}";
version = "0.5.0";
version = "0.7.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/a/arrow/${name}.tar.gz";
sha256 = "1q3a6arjm6ysl2ff6lgdm504np7b1rbivrzspybjypq1nczcb7qy";
sha256 = "0yx10dz3hp825fcq9w15zbp26v622npcjscb91da05zig8036lra";
};
doCheck = false;
checkPhase = ''
nosetests
'';
buildInputs = with self; [ nose chai simplejson ];
propagatedBuildInputs = with self; [ dateutil ];
meta = {
description = "Twitter API library";
description = "Python library for date manipulation";
license = "apache";
maintainers = with maintainers; [ thoughtpolice ];
};