pythonPackages.drms: init at 0.5.6
This commit is contained in:
parent
ccdd093064
commit
daf811fa6d
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue