
https://github.com/astropy/astropy-iers-data/compare/refs/tags/v0.2025.1.13.0.34.51...v0.2025.3.31.0.36.18
41 lines
799 B
Nix
41 lines
799 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "astropy-iers-data";
|
|
version = "0.2025.3.31.0.36.18";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astropy";
|
|
repo = "astropy-iers-data";
|
|
tag = "v${version}";
|
|
hash = "sha256-51U5QStpzTGwg1MC1NJPMnothjF3Aa7j3dxiRUfnqDE=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
pythonImportsCheck = [ "astropy_iers_data" ];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "IERS data maintained by @astrofrog and astropy.utils.iers maintainers";
|
|
homepage = "https://github.com/astropy/astropy-iers-data";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|