`buildDotnetModule`: add support for installing pre-release tools (#374663)
[NixPkgs.git] / pkgs / development / python-modules / pymeeus / default.nix
blob4178c593aa0bcea0412ee5357552ee7d60b5055b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pytest7CheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "pymeeus";
11   version = "0.5.12";
12   pyproject = true;
14   src = fetchPypi {
15     pname = "PyMeeus";
16     inherit version;
17     hash = "sha256-VI9xhr2LlsvAac9kmo6ON33OSax0SGcJhJ/mOpnK1oQ=";
18   };
20   build-system = [ setuptools ];
22   nativeCheckInputs = [ pytest7CheckHook ];
24   meta = with lib; {
25     homepage = "https://github.com/architest/pymeeus";
26     description = "Library of astronomical algorithms";
27     license = licenses.lgpl3;
28     maintainers = with maintainers; [ jluttine ];
29   };