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

32 lines
764 B
Nix
Raw Normal View History

2017-06-07 18:02:42 +03:00
{ lib
, fetchPypi
, buildPythonPackage
, numpy
2017-09-06 18:15:30 +03:00
, pytest }:
2017-06-07 18:02:42 +03:00
buildPythonPackage rec {
pname = "astropy";
2017-08-24 20:34:20 +03:00
version = "2.0.1";
2017-06-07 18:02:42 +03: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-08-24 20:34:20 +03:00
sha256 = "25e0881a392a2e03b4a705cf9592f01894d23f64797323b21387efa8ea9ec03e";
2017-06-07 18:02:42 +03:00
};
2017-09-06 18:15:30 +03:00
propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires
2017-06-07 18:02:42 +03:00
meta = {
description = "Astronomy/Astrophysics library for Python";
homepage = http://www.astropy.org;
2017-06-07 18:02:42 +03:00
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ kentjames ];
};
}