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

41 lines
656 B
Nix
Raw Normal View History

2019-07-15 18:07:47 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, six
, pytest
, python
}:
buildPythonPackage rec {
pname = "drms";
2019-10-16 10:43:05 +01:00
version = "0.5.7";
2019-07-15 18:07:47 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:05 +01:00
sha256 = "ab3ec6d072b1980f77dadf3b2cb0fe56c648eaf927ea381f606b4db66d4cbff2";
2019-07-15 18:07:47 +01:00
};
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";
2019-07-15 18:07:47 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}