nixpkgs/pkgs/development/python-modules/drms/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
832 B
Nix
Raw Normal View History

2019-07-15 17:07:47 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, six
2020-12-28 18:23:44 +00:00
, astropy
, pytestCheckHook
, pytest-doctestplus
2021-07-02 21:08:41 +00:00
, pythonOlder
, setuptools-scm
2019-07-15 17:07:47 +00:00
}:
buildPythonPackage rec {
pname = "drms";
2021-07-02 21:08:41 +00:00
version = "0.6.2";
2020-12-28 18:23:44 +00:00
format = "pyproject";
2021-07-02 21:08:41 +00:00
disabled = pythonOlder "3.7";
2019-07-15 17:07:47 +00:00
src = fetchPypi {
inherit pname version;
2021-07-02 21:08:41 +00:00
sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o=";
2019-07-15 17:07:47 +00:00
};
nativeBuildInputs = [
setuptools-scm
];
2019-07-15 17:07:47 +00:00
propagatedBuildInputs = [
numpy
pandas
six
];
checkInputs = [
2020-12-28 18:23:44 +00:00
astropy
pytestCheckHook
pytest-doctestplus
2019-07-15 17:07:47 +00:00
];
2021-07-02 21:08:41 +00:00
pythonImportsCheck = [ "drms" ];
2019-07-15 17:07:47 +00:00
meta = with lib; {
description = "Access HMI, AIA and MDI data with Python";
homepage = "https://github.com/sunpy/drms";
2021-07-02 21:08:41 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ costrouc ];
2019-07-15 17:07:47 +00:00
};
}