pythonPackages.pymeeus: init at 0.3.7
This commit is contained in:
parent
5634ef5d47
commit
1501648410
24
pkgs/development/python-modules/pymeeus/default.nix
Normal file
24
pkgs/development/python-modules/pymeeus/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1175,6 +1175,8 @@ in {
|
|||||||
|
|
||||||
pymavlink = callPackage ../development/python-modules/pymavlink { };
|
pymavlink = callPackage ../development/python-modules/pymavlink { };
|
||||||
|
|
||||||
|
pymeeus = callPackage ../development/python-modules/pymeeus { };
|
||||||
|
|
||||||
pymsgbox = callPackage ../development/python-modules/pymsgbox { };
|
pymsgbox = callPackage ../development/python-modules/pymsgbox { };
|
||||||
|
|
||||||
pynisher = callPackage ../development/python-modules/pynisher { };
|
pynisher = callPackage ../development/python-modules/pynisher { };
|
||||||
|
Loading…
Reference in New Issue
Block a user