about summary refs log tree commit diff
path: root/pkgs/development/python-modules/astropy/default.nix
blob: 836ce3addea03093c04752cd598da49c8236a444 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, fetchPypi
, buildPythonPackage
, numpy
, cython
, h5py
, scipy }:

buildPythonPackage rec {
  
  pname = "astropy";
  version = "1.3.3";

  name = "${pname}-${version}";
  doCheck = false; #Some tests are failing. More importantly setup.py hangs on completion. Needs fixing with a proper shellhook.
  src = fetchPypi {
    inherit pname version;
    sha256 = "ed093e033fcbee5a3ec122420c3376f8a80f74663214560727d3defe82170a99";
  };
  propagatedBuildInputs = [ numpy cython h5py scipy ];


  meta = {
    description = "Astronomy/Astrophysics library for Python";
    homepage = http://www.astropy.org;
    license = lib.licenses.bsd3;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ kentjames ];
  };
}