2018-11-16 00:11:41 +01:00
|
|
|
{ pkgs
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, astropy
|
|
|
|
, requests
|
|
|
|
, keyring
|
|
|
|
, beautifulsoup4
|
|
|
|
, html5lib
|
2019-07-23 18:44:54 +02:00
|
|
|
, pytest
|
|
|
|
, pytest-astropy
|
|
|
|
, astropy-helpers
|
2020-02-25 13:13:10 +01:00
|
|
|
, isPy3k
|
2018-11-16 00:11:41 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astroquery";
|
2020-02-25 13:13:10 +01:00
|
|
|
version = "0.4";
|
2018-11-16 00:11:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-25 13:13:10 +01:00
|
|
|
sha256 = "1ddwnj9vpvxkrfb45c4pwv5f5za9kn2q0040dpw2ymj2bwlpl61h";
|
2018-11-16 00:11:41 +01:00
|
|
|
};
|
|
|
|
|
2020-02-25 13:13:10 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-11-16 00:11:41 +01:00
|
|
|
propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ];
|
|
|
|
|
2019-07-23 18:44:54 +02:00
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
|
|
|
|
2020-02-25 13:13:10 +01:00
|
|
|
# Tests disabled until pytest-astropy has been updated to include pytest-astropy-header
|
|
|
|
doCheck = false;
|
2019-07-23 18:44:54 +02:00
|
|
|
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 in the build directory. The tests create files
|
|
|
|
# in $HOME/.astropy so we need to set HOME to $TMPDIR.
|
|
|
|
checkPhase = ''
|
|
|
|
cd build/lib
|
|
|
|
HOME=$TMPDIR pytest
|
|
|
|
'';
|
|
|
|
|
2018-11-16 00:11:41 +01:00
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "Functions and classes to access online data resources";
|
|
|
|
homepage = "https://astroquery.readthedocs.io/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.smaret ];
|
|
|
|
};
|
|
|
|
}
|