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

85 lines
1.3 KiB
Nix
Raw Normal View History

2019-10-08 00:40:49 +01:00
{ stdenv
, lib
2019-07-15 18:48:07 +01:00
, buildPythonPackage
2020-12-28 18:49:17 +00:00
, fetchPypi
2019-07-15 18:48:07 +01:00
, pythonOlder
, asdf
2020-07-28 23:36:28 +01:00
, astropy
2019-07-15 18:48:07 +01:00
, astropy-helpers
2020-12-28 18:49:17 +00:00
, astropy-extension-helpers
2020-07-28 23:36:28 +01:00
, beautifulsoup4
, drms
, glymur
2019-07-15 18:48:07 +01:00
, hypothesis
2020-07-28 23:36:28 +01:00
, matplotlib
, numpy
, pandas
, parfive
2019-07-15 18:48:07 +01:00
, pytest-astropy
, pytest-mock
2020-07-28 23:36:28 +01:00
, pytestcov
, python-dateutil
, scikitimage
, scipy
, sqlalchemy
, towncrier
, tqdm
, zeep
2019-07-15 18:48:07 +01:00
}:
buildPythonPackage rec {
pname = "sunpy";
2021-02-20 09:09:18 +00:00
version = "2.0.7";
2019-07-15 18:48:07 +01:00
disabled = pythonOlder "3.6";
2020-12-28 18:49:17 +00:00
src = fetchPypi {
inherit pname version;
2021-02-20 09:09:18 +00:00
sha256 = "d13ac67c14ea825652dc3e12c4c627e782e8e843e96a1d54440d39dd2ceb6a5c";
2019-07-15 18:48:07 +01:00
};
2020-12-28 18:49:17 +00:00
nativeBuildInputs = [
astropy-extension-helpers
];
2019-07-15 18:48:07 +01:00
propagatedBuildInputs = [
numpy
scipy
matplotlib
pandas
astropy
astropy-helpers
parfive
sqlalchemy
scikitimage
2020-07-28 23:36:28 +01:00
towncrier
2019-07-15 18:48:07 +01:00
glymur
beautifulsoup4
drms
python-dateutil
zeep
tqdm
asdf
];
checkInputs = [
hypothesis
pytest-astropy
pytestcov
pytest-mock
];
2019-10-08 00:40:49 +01:00
# darwin has write permission issues
doCheck = stdenv.isLinux;
# ignore documentation tests
2019-07-15 18:48:07 +01:00
checkPhase = ''
2020-12-28 18:49:17 +00:00
PY_IGNORE_IMPORTMISMATCH=1 HOME=$(mktemp -d) pytest sunpy -k 'not rst'
2019-07-15 18:48:07 +01:00
'';
meta = with lib; {
description = "SunPy: Python for Solar Physics";
homepage = "https://sunpy.org";
2019-07-15 18:48:07 +01:00
license = licenses.bsd2;
maintainers = [ maintainers.costrouc ];
};
}