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

46 lines
912 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build
poetry-core,
# runtime
backports-zoneinfo,
# tests
pytestCheckHook,
freezegun,
}:
buildPythonPackage rec {
pname = "astral";
version = "3.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-m3w7QS6eadFyz7JL4Oat3MnxvQGijbi+vmbXXMxTPYg=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ backports-zoneinfo ];
nativeCheckInputs = [
freezegun
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/sffjunkie/astral/releases/tag/${version}";
description = "Calculations for the position of the sun and the moon";
homepage = "https://github.com/sffjunkie/astral/";
license = licenses.asl20;
maintainers = with maintainers; [ flokli ];
};
}