blob: bf77854dc5fac0a45a31c17c0312b1f6d93ef6cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
# build
poetry-core,
# tests
pytestCheckHook,
freezegun,
}:
buildPythonPackage rec {
pname = "astral";
version = "3.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-m3w7QS6eadFyz7JL4Oat3MnxvQGijbi+vmbXXMxTPYg=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [ "astral" ];
meta = {
description = "Calculations for the position of the sun and the moon";
homepage = "https://github.com/sffjunkie/astral/";
changelog = "https://github.com/sffjunkie/astral/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ flokli ];
};
}
|