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

33 lines
786 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";
version = "3.2.1";
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;
sha256 = "706c0457789c78285e5464a5a336f5f0b058d646d60f4e5f5ba1f7d5bf424b28";
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 = https://www.astropy.org;
2017-06-07 17:02:42 +02:00
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ kentjames ];
};
}