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
, fetchFromGitHub
, numpy
, scipy
, matplotlib
, pandas
, astropy
, parfive
, pythonOlder
, sqlalchemy
, scikitimage
, glymur
, beautifulsoup4
, drms
, python-dateutil
, zeep
, tqdm
, asdf
, astropy-helpers
, hypothesis
, pytest-astropy
, pytestcov
, pytest-mock
}:
buildPythonPackage rec {
pname = "sunpy";
2019-10-08 00:40:49 +01:00
version = "1.0.6";
2019-07-15 18:48:07 +01:00
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sunpy";
repo = pname;
rev = "v${version}";
2019-10-08 00:40:49 +01:00
sha256 = "0j2yfhfxgi95rig8cfp9lvszb7694gq90jvs0xrb472hwnzgh2sk";
2019-07-15 18:48:07 +01:00
};
propagatedBuildInputs = [
numpy
scipy
matplotlib
pandas
astropy
astropy-helpers
parfive
sqlalchemy
scikitimage
glymur
beautifulsoup4
drms
python-dateutil
zeep
tqdm
asdf
];
checkInputs = [
hypothesis
pytest-astropy
pytestcov
pytest-mock
];
preBuild = ''
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
export HOME=$(mktemp -d)
'';
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 = ''
2019-10-08 00:40:49 +01:00
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;
license = licenses.bsd2;
maintainers = [ maintainers.costrouc ];
};
}