pythonPackages.ephem: 3.7.6.0 -> 3.7.7.0

This commit is contained in:
Jonathan Ringer 2019-09-30 13:59:51 -07:00
parent 75877766b3
commit 3090637d82

View File

@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "ephem";
version = "3.7.6.0";
version = "3.7.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "7a4c82b1def2893e02aec0394f108d24adb17bd7b0ca6f4bc78eb7120c0212ac";
sha256 = "0dj4kk325b01s7q1zkwpm9rrzl7n1jf7fr92wcajjhc5kx14hwb0";
};
patchFlags = "-p0";
@ -17,11 +17,6 @@ buildPythonPackage rec {
LC_ALL="en_US.UTF-8" py.test --pyargs ephem.tests -k "not JPLTest"
'';
# Unfortunately, the tests are broken for Python 3 in 3.7.6.0. They have been
# fixed in https://github.com/brandon-rhodes/pyephem/commit/c8633854e2d251a198b0f701d0528b508baa2411
# but there has not been a new release since then.
doCheck = !isPy3k;
meta = with stdenv.lib; {
description = "Compute positions of the planets and stars";
homepage = https://pypi.python.org/pypi/ephem/;