1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-04 23:02:38 +03:00
nixpkgs/pkgs/development/python-modules/astropy/default.nix

33 lines
785 B
Nix
Raw Normal View History

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