Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 40 lines 690 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5, pandas 6, six 7, astropy 8, pytestCheckHook 9, pytest-doctestplus 10}: 11 12buildPythonPackage rec { 13 pname = "drms"; 14 version = "0.6.0"; 15 format = "pyproject"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "74efb903f42647ea536de0c5aea4f9a81efe027c95055ec4e72ef62479a04c89"; 20 }; 21 22 propagatedBuildInputs = [ 23 numpy 24 pandas 25 six 26 ]; 27 28 checkInputs = [ 29 astropy 30 pytestCheckHook 31 pytest-doctestplus 32 ]; 33 34 meta = with lib; { 35 description = "Access HMI, AIA and MDI data with Python"; 36 homepage = "https://github.com/sunpy/drms"; 37 license = licenses.mit; 38 maintainers = [ maintainers.costrouc ]; 39 }; 40}