python3Packages.drms: unbreak

This commit is contained in:
Robert T. McGibbon 2020-12-28 13:23:44 -05:00
parent 545350f147
commit 39df1e526d

View file

@ -4,13 +4,15 @@
, numpy
, pandas
, six
, pytest
, python
, astropy
, pytestCheckHook
, pytest-doctestplus
}:
buildPythonPackage rec {
pname = "drms";
version = "0.6.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
@ -24,13 +26,11 @@ buildPythonPackage rec {
];
checkInputs = [
pytest
astropy
pytestCheckHook
pytest-doctestplus
];
checkPhase = ''
${python.interpreter} -m drms.tests
'';
meta = with lib; {
description = "Access HMI, AIA and MDI data with Python";
homepage = "https://github.com/sunpy/drms";