python: arrow: 0.12.1 -> 0.13.1

This commit is contained in:
Frederik Rietdijk 2019-02-14 08:37:10 +01:00
parent 72ed15de69
commit 0a743603e5

View file

@ -1,21 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi
, nose, chai, simplejson, backports_functools_lru_cache
, dateutil }:
, dateutil, pytz
}:
buildPythonPackage rec {
pname = "arrow";
version = "0.12.1";
version = "0.13.1";
src = fetchPypi {
inherit pname version;
sha256 = "a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd";
sha256 = "6f54d9f016c0b7811fac9fb8c2c7fa7421d80c54dbdd75ffb12913c55db60b8a";
};
checkPhase = ''
nosetests --cover-package=arrow
'';
checkInputs = [ nose chai simplejson ];
checkInputs = [ nose chai simplejson pytz ];
propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
postPatch = ''