python3Packages.astroquery: unbreak

+1 -5
+1 -5
pkgs/development/python-modules/astroquery/default.nix
··· 15 15 buildPythonPackage rec { 16 16 pname = "astroquery"; 17 17 version = "0.4.1"; 18 + format = "pyproject"; 18 19 19 20 src = fetchPypi { 20 21 inherit pname version; ··· 30 31 # Tests disabled until pytest-astropy has been updated to include pytest-astropy-header 31 32 doCheck = false; 32 33 checkInputs = [ pytest pytest-astropy ]; 33 - 34 - # Disable automatic update of the astropy-helper module 35 - postPatch = '' 36 - substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" 37 - ''; 38 34 39 35 # Tests must be run in the build directory. The tests create files 40 36 # in $HOME/.astropy so we need to set HOME to $TMPDIR.