My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyvo/default.nix

56 lines
1.0 KiB

{ lib
, buildPythonPackage
, fetchPypi
, astropy
, pillow
, pythonOlder
, pytestCheckHook
, pytest-astropy
, requests
, requests-mock
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pyvo";
version = "1.3";
disabled = pythonOlder "3.8"; # according to setup.cfg
src = fetchPypi {
inherit pname version;
sha256 = "846a54a05a8ddb47a8c2cc3077434779b0e4ccc1b74a7a5408593cb673307d67";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
astropy
requests
];
checkInputs = [
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";
homepage = "https://github.com/astropy/pyvo";
license = licenses.bsd3;
maintainers = with maintainers; [ smaret ];
};
}