ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jplephem / default.nix
blob93b1ffb550ee5162f5e1a5279d716126d38c5b59
1 { lib, buildPythonPackage, fetchPypi, numpy, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "jplephem";
5   version = "2.18";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-SSkR6KTEeDB5GwO5oP/ff8ZfaF0cuzoXkLHqKIrn+uU=";
10   };
12   propagatedBuildInputs = [ numpy ];
14   # Weird import error, only happens in testing:
15   #   File "/build/jplephem-2.17/jplephem/daf.py", line 10, in <module>
16   #     from numpy import array as numpy_array, ndarray
17   # ImportError: cannot import name 'array' from 'sys' (unknown location)
18   doCheck = false;
20   pythonImportsCheck = [ "jplephem" ];
22   meta = with lib; {
23     homepage = "https://github.com/brandon-rhodes/python-jplephem/";
24     description = "Python version of NASA DE4xx ephemerides, the basis for the Astronomical Alamanac";
25     license = licenses.mit;
26     maintainers = with maintainers; [ zane ];
27   };