depot/third_party/nixpkgs/pkgs/development/python-modules/pymeeus/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
605 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytest7CheckHook,
}:
buildPythonPackage rec {
pname = "pymeeus";
version = "0.5.12";
pyproject = true;
src = fetchPypi {
pname = "PyMeeus";
inherit version;
hash = "sha256-VI9xhr2LlsvAac9kmo6ON33OSax0SGcJhJ/mOpnK1oQ=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytest7CheckHook ];
meta = with lib; {
homepage = "https://github.com/architest/pymeeus";
description = "Library of astronomical algorithms";
license = licenses.lgpl3;
maintainers = with maintainers; [ jluttine ];
};
}