2017-06-07 08:02:42 -07:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
2018-03-20 06:30:01 -07:00
|
|
|
, isPy3k
|
2017-06-07 08:02:42 -07:00
|
|
|
, numpy
|
2017-09-06 08:15:30 -07:00
|
|
|
, pytest }:
|
2017-06-07 08:02:42 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astropy";
|
2019-01-16 20:58:29 -08:00
|
|
|
version = "3.1.1";
|
2017-06-07 08:02:42 -07:00
|
|
|
|
2018-03-20 06:30:01 -07:00
|
|
|
disabled = !isPy3k; # according to setup.py
|
|
|
|
|
2017-06-07 08:02:42 -07:00
|
|
|
doCheck = false; #Some tests are failing. More importantly setup.py hangs on completion. Needs fixing with a proper shellhook.
|
2018-03-20 06:30:01 -07:00
|
|
|
|
2017-06-07 08:02:42 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-16 20:58:29 -08:00
|
|
|
sha256 = "0fzm2q922qi68ns5biy807dzmgz1i9gqdh73lcafs0gfk8zyc9v5";
|
2017-06-07 08:02:42 -07:00
|
|
|
};
|
2017-09-06 08:15:30 -07:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires
|
2017-06-07 08:02:42 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Astronomy/Astrophysics library for Python";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://www.astropy.org;
|
2017-06-07 08:02:42 -07:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = with lib.maintainers; [ kentjames ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|