python3Packages.astropy: unbreak

This commit is contained in:
Robert T. McGibbon 2020-12-27 19:16:28 -05:00
parent 7ef5a93fe1
commit 8df2e76984

View File

@ -1,5 +1,6 @@
{ lib { lib
, fetchPypi , fetchPypi
, setuptools_scm
, buildPythonPackage , buildPythonPackage
, isPy3k , isPy3k
, cython , cython
@ -8,11 +9,14 @@
, pytest , pytest
, pytest-astropy , pytest-astropy
, astropy-helpers , astropy-helpers
, astropy-extension-helpers
, pyerfa
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "astropy"; pname = "astropy";
version = "4.2"; version = "4.2";
format = "pyproject";
disabled = !isPy3k; # according to setup.py disabled = !isPy3k; # according to setup.py
@ -21,15 +25,12 @@ buildPythonPackage rec {
sha256 = "2c194f8a429b8399de64a413a06881ea49f0525cabaa2d78fc132b9e970adc6a"; sha256 = "2c194f8a429b8399de64a413a06881ea49f0525cabaa2d78fc132b9e970adc6a";
}; };
nativeBuildInputs = [ astropy-helpers cython jinja2 ]; nativeBuildInputs = [ setuptools_scm astropy-helpers astropy-extension-helpers cython jinja2 ];
propagatedBuildInputs = [ numpy pyerfa ];
propagatedBuildInputs = [ numpy pytest ]; # yes it really has pytest in install_requires
checkInputs = [ pytest pytest-astropy ]; checkInputs = [ pytest pytest-astropy ];
# Disable automatic update of the astropy-helper module preBuild = ''
postPatch = '' export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
''; '';
# Tests must be run from the build directory. astropy/samp tests # Tests must be run from the build directory. astropy/samp tests
@ -42,15 +43,14 @@ buildPythonPackage rec {
''; '';
# 368 failed, 10889 passed, 978 skipped, 69 xfailed in 196.24s # 368 failed, 10889 passed, 978 skipped, 69 xfailed in 196.24s
# doCheck = false;
doCheck = false; doCheck = false;
meta = { meta = with lib; {
description = "Astronomy/Astrophysics library for Python"; description = "Astronomy/Astrophysics library for Python";
homepage = "https://www.astropy.org"; homepage = "https://www.astropy.org";
license = lib.licenses.bsd3; license = licenses.bsd3;
platforms = lib.platforms.all; platforms = platforms.all;
maintainers = with lib.maintainers; [ kentjames ]; maintainers = [ maintainers.kentjames ];
}; };
} }