mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, isPy3k
|
|
, numpy
|
|
, pytest
|
|
, pytest-astropy
|
|
, astropy-helpers
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "astropy";
|
|
version = "4.0";
|
|
|
|
disabled = !isPy3k; # according to setup.py
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "404200e0baa84de09ac563ad9ccab3817e9b9669d0025cee74a8752f4bc2771b";
|
|
};
|
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
|
|
|
propagatedBuildInputs = [ numpy pytest ]; # yes it really has pytest in install_requires
|
|
|
|
checkInputs = [ pytest pytest-astropy ];
|
|
|
|
# Disable automatic update of the astropy-helper module
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
|
|
'';
|
|
|
|
# Tests must be run from the build directory. astropy/samp tests
|
|
# require a network connection, so we ignore them. For some reason
|
|
# pytest --ignore does not work, so we delete the tests instead.
|
|
checkPhase = ''
|
|
cd build/lib.*
|
|
rm -f astropy/samp/tests/*
|
|
pytest
|
|
'';
|
|
|
|
# 368 failed, 10889 passed, 978 skipped, 69 xfailed in 196.24s
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Astronomy/Astrophysics library for Python";
|
|
homepage = "https://www.astropy.org";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ kentjames ];
|
|
};
|
|
}
|
|
|
|
|