python3Packages.drms: fix build (#354984)

This commit is contained in:
Weijia Wang 2024-11-11 22:53:32 +01:00 committed by GitHub
commit 6faf3875c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,16 +44,19 @@ buildPythonPackage rec {
pytest-doctestplus
];
disabledTests = [ "test_query_hexadecimal_strings" ];
disabledTests = [
"test_query_hexadecimal_strings"
"test_jsocinfoconstants" # Need network
];
disabledTestPaths = [ "docs/tutorial.rst" ];
pythonImportsCheck = [ "drms" ];
meta = with lib; {
meta = {
description = "Access HMI, AIA and MDI data with Python";
homepage = "https://github.com/sunpy/drms";
license = licenses.bsd2;
maintainers = [ ];
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
};
}