pythonPackages.drms: init at 0.5.6

This commit is contained in:
Chris Ostrouchov 2019-07-15 13:07:47 -04:00 committed by Frederik Rietdijk
parent ccdd093064
commit daf811fa6d
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, six
, pytest
, python
}:
buildPythonPackage rec {
pname = "drms";
version = "0.5.6";
src = fetchPypi {
inherit pname version;
sha256 = "95cac0e14532893a44eeab8e329ddb76150e6848153d8cb1e4e08ba55569e6af";
};
propagatedBuildInputs = [
numpy
pandas
six
];
checkInputs = [
pytest
];
checkPhase = ''
${python.interpreter} -m drms.tests
'';
meta = with lib; {
description = "Access HMI, AIA and MDI data with Python";
homepage = https://github.com/sunpy/drms;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -2123,6 +2123,8 @@ in {
dropbox = callPackage ../development/python-modules/dropbox {};
drms = callPackage ../development/python-modules/drms { };
ds4drv = callPackage ../development/python-modules/ds4drv {
inherit (pkgs) fetchFromGitHub bluez;
};