blob: 0226f800834a7a36938f47878126ec706c58bf41 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
}:
buildPythonPackage rec {
pname = "astropy-iers-data";
version = "0.2025.11.24.0.39.11";
pyproject = true;
src = fetchFromGitHub {
owner = "astropy";
repo = "astropy-iers-data";
tag = "v${version}";
hash = "sha256-B8568fGvS76igIlEWIbsTczQYqL0nPISM8rfUrF/DS4=";
};
build-system = [
hatchling
hatch-vcs
];
pythonImportsCheck = [ "astropy_iers_data" ];
# no tests
doCheck = false;
meta = {
changelog = "https://github.com/astropy/astropy-iers-data/releases/tag/${src.tag}";
description = "IERS data maintained by @astrofrog and astropy.utils.iers maintainers";
homepage = "https://github.com/astropy/astropy-iers-data";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|