2018-02-26 23:22:09 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytz, requests, pytest }:
|
2017-11-23 22:53:28 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astral";
|
2019-01-27 18:52:35 +00:00
|
|
|
version = "1.8";
|
2017-11-23 22:53:28 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-27 18:52:35 +00:00
|
|
|
sha256 = "1j4rzmm0im8997c7b64kfq099531qcxp6xzh0dhyb4f5176lqqkx";
|
2017-11-23 22:53:28 +00:00
|
|
|
};
|
|
|
|
|
2018-02-26 23:22:09 +00:00
|
|
|
propagatedBuildInputs = [ pytz requests ];
|
2017-11-23 22:53:28 +00:00
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
2018-02-26 23:22:09 +00:00
|
|
|
# https://github.com/sffjunkie/astral/pull/13
|
|
|
|
touch src/test/.api_key
|
|
|
|
py.test -m "not webtest"
|
2017-11-23 22:53:28 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Calculations for the position of the sun and the moon";
|
|
|
|
homepage = https://github.com/sffjunkie/astral/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ flokli ];
|
|
|
|
};
|
|
|
|
}
|