2018-02-27 00:22:09 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytz, requests, pytest }:
|
2017-11-23 23:53:28 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astral";
|
2018-05-09 16:45:20 +02:00
|
|
|
version = "1.6.1";
|
2017-11-23 23:53:28 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-05-09 16:45:20 +02:00
|
|
|
sha256 = "ab0c08f2467d35fcaeb7bad15274743d3ac1ad18b5391f64a0058a9cd192d37d";
|
2017-11-23 23:53:28 +01:00
|
|
|
};
|
|
|
|
|
2018-02-27 00:22:09 +01:00
|
|
|
propagatedBuildInputs = [ pytz requests ];
|
2017-11-23 23:53:28 +01:00
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
2018-02-27 00:22:09 +01:00
|
|
|
# https://github.com/sffjunkie/astral/pull/13
|
|
|
|
touch src/test/.api_key
|
|
|
|
py.test -m "not webtest"
|
2017-11-23 23:53:28 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|