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

32 lines
764 B
Nix
Raw Normal View History

2017-06-07 08:02:42 -07:00
{ lib
, fetchPypi
, buildPythonPackage
, numpy
2017-09-06 08:15:30 -07:00
, pytest }:
2017-06-07 08:02:42 -07:00
buildPythonPackage rec {
pname = "astropy";
2017-12-30 03:21:40 -08:00
version = "2.0.3";
2017-06-07 08:02:42 -07:00
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;
2017-12-30 03:21:40 -08:00
sha256 = "fdfc0248f6250798ed6d1327be609cb901db89ae01fc768cfbc9e263bdf56f4f";
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";
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 ];
};
}