2022-04-15 01:41:22 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2023-02-16 17:41:37 +00:00
|
|
|
, fetchpatch
|
2022-04-15 01:41:22 +00:00
|
|
|
, astropy
|
|
|
|
, pillow
|
|
|
|
, pythonOlder
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-astropy
|
|
|
|
, requests
|
|
|
|
, requests-mock
|
|
|
|
, setuptools-scm
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyvo";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.5.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.8"; # according to setup.cfg
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-ByCBD+e3ZrpT0Q6dnkuyO8lnwVGm85LiKmy/4NRTpjI=";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
astropy
|
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-04-15 01:41:22 +00:00
|
|
|
pillow
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-astropy
|
|
|
|
requests-mock
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTestPaths = [
|
|
|
|
# touches network
|
|
|
|
"pyvo/dal/tests/test_datalink.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "pyvo" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Astropy affiliated package for accessing Virtual Observatory data and services";
|
2022-04-27 09:35:20 +00:00
|
|
|
homepage = "https://github.com/astropy/pyvo";
|
2022-04-15 01:41:22 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ smaret ];
|
|
|
|
};
|
|
|
|
}
|