pythonPackages.astroquery 0.3.10 -> 0.4

Tests are disabled until pytest-astropy is updated with
pytest-astropy-header.
This commit is contained in:
xbreak 2020-02-25 12:13:10 +00:00 committed by Jon
parent 71113dbc69
commit a5e82af9d8

View File

@ -9,21 +9,26 @@
, pytest , pytest
, pytest-astropy , pytest-astropy
, astropy-helpers , astropy-helpers
, isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "astroquery"; pname = "astroquery";
version = "0.3.10"; version = "0.4";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1ce57a8792c7d5d74206d797d379de6da35d56be433ea5840c41a49f202e2fab"; sha256 = "1ddwnj9vpvxkrfb45c4pwv5f5za9kn2q0040dpw2ymj2bwlpl61h";
}; };
disabled = !isPy3k;
propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ]; propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ];
nativeBuildInputs = [ astropy-helpers ]; nativeBuildInputs = [ astropy-helpers ];
# Tests disabled until pytest-astropy has been updated to include pytest-astropy-header
doCheck = false;
checkInputs = [ pytest pytest-astropy ]; checkInputs = [ pytest pytest-astropy ];
# Disable automatic update of the astropy-helper module # Disable automatic update of the astropy-helper module