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