Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cae2ade1f9d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cc82e069c1f9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 30, 2019

  1. pythonPackages.ephem: 3.7.6.0 -> 3.7.7.0

    Jonathan Ringer committed Sep 30, 2019
    Copy the full SHA
    3090637 View commit details

Commits on Oct 3, 2019

  1. Merge pull request #70139 from jonringer/bump-ephem

    pythonPackages.ephem: 3.7.6.0 -> 3.7.7.0
    mmahut authored Oct 3, 2019
    Copy the full SHA
    cc82e06 View commit details
Showing with 2 additions and 7 deletions.
  1. +2 −7 pkgs/development/python-modules/ephem/default.nix
9 changes: 2 additions & 7 deletions pkgs/development/python-modules/ephem/default.nix
Original file line number Diff line number Diff line change
@@ -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/;