python.pkgs.astral: 1.8 -> 1.9.1

This commit is contained in:
Robert Schütz 2019-01-29 15:47:00 +01:00
parent 5c6892e1a2
commit c1be0483b3

View File

@ -2,18 +2,18 @@
buildPythonPackage rec {
pname = "astral";
version = "1.8";
version = "1.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "1j4rzmm0im8997c7b64kfq099531qcxp6xzh0dhyb4f5176lqqkx";
sha256 = "5048d9cd57c746c7bcb6bb66274542d804c5a132ee5b88e9135d4e878221a119";
};
propagatedBuildInputs = [ pytz requests ];
checkInputs = [ pytest ];
checkPhase = ''
# https://github.com/sffjunkie/astral/pull/13
# https://github.com/sffjunkie/astral/pull/26
touch src/test/.api_key
py.test -m "not webtest"
'';