pythonPackages.astral: fix build
This commit is contained in:
parent
e459171f9a
commit
c5fab86a7e
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, pytz, pytest }:
|
{ stdenv, buildPythonPackage, fetchPypi, pytz, requests, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "astral";
|
pname = "astral";
|
||||||
@ -9,11 +9,13 @@ buildPythonPackage rec {
|
|||||||
sha256 = "874b397ddbf0a4c1d8d644b21c2481e8a96b61343f820ad52d8a322d61a15083";
|
sha256 = "874b397ddbf0a4c1d8d644b21c2481e8a96b61343f820ad52d8a322d61a15083";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pytz ];
|
propagatedBuildInputs = [ pytz requests ];
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test -k "not test_GoogleLocator"
|
# https://github.com/sffjunkie/astral/pull/13
|
||||||
|
touch src/test/.api_key
|
||||||
|
py.test -m "not webtest"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user