81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ pkgs
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, astropy
|
|
, requests
|
|
, keyring
|
|
, beautifulsoup4
|
|
, html5lib
|
|
, pytest
|
|
, pytest-astropy
|
|
, astropy-helpers
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "astroquery";
|
|
version = "0.4.5";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "20002f84b61fb11ceeae408a4cd23b379490e174054ec777f946df8a3f06be1b";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ];
|
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
|
|
|
# Tests disabled until pytest-astropy has been updated to include pytest-astropy-header
|
|
doCheck = false;
|
|
checkInputs = [ pytest pytest-astropy ];
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "Functions and classes to access online data resources";
|
|
homepage = "https://astroquery.readthedocs.io/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.smaret ];
|
|
};
|
|
}
|