python: arrow: 0.12.1 -> 0.13.1
This commit is contained in:
parent
72ed15de69
commit
0a743603e5
|
@ -1,21 +1,22 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, nose, chai, simplejson, backports_functools_lru_cache
|
, nose, chai, simplejson, backports_functools_lru_cache
|
||||||
, dateutil }:
|
, dateutil, pytz
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "arrow";
|
pname = "arrow";
|
||||||
version = "0.12.1";
|
version = "0.13.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd";
|
sha256 = "6f54d9f016c0b7811fac9fb8c2c7fa7421d80c54dbdd75ffb12913c55db60b8a";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
nosetests --cover-package=arrow
|
nosetests --cover-package=arrow
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ nose chai simplejson ];
|
checkInputs = [ nose chai simplejson pytz ];
|
||||||
propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
|
propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Reference in New Issue