nixpkgs/pkgs/development/python-modules/astropy/default.nix

33 lines
773 B
Nix
Raw Normal View History

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