nixpkgs/pkgs/development/python-modules/astral/default.nix

28 lines
717 B
Nix
Raw Normal View History

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";
2019-02-14 08:37:10 +01:00
version = "1.10.1";
2017-11-23 23:53:28 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:10 +01:00
sha256 = "d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1";
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 = ''
2019-01-29 15:47:00 +01:00
# https://github.com/sffjunkie/astral/pull/26
2018-02-27 00:22:09 +01:00
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 ];
};
}