pythonPackages.pymeeus: init at 0.3.7

This commit is contained in:
Jaakko Luttinen 2020-03-09 17:20:14 +02:00 committed by Jon
parent 5634ef5d47
commit 1501648410
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "PyMeeus";
version = "0.3.7";
src = fetchPypi {
inherit pname version;
sha256 = "0qjnk9sc65i4by2x4zm6w941a4i31fmhgwbkpbqkk87rwq4h4hsn";
};
checkInputs = [ pytest ];
checkPhase = ''
pytest .
'';
meta = with stdenv.lib; {
homepage = "https://github.com/architest/pymeeus";
description = "Library of astronomical algorithms";
license = licenses.lgpl3;
maintainers = with maintainers; [ jluttine ];
};
}

View File

@ -1175,6 +1175,8 @@ in {
pymavlink = callPackage ../development/python-modules/pymavlink { };
pymeeus = callPackage ../development/python-modules/pymeeus { };
pymsgbox = callPackage ../development/python-modules/pymsgbox { };
pynisher = callPackage ../development/python-modules/pynisher { };