{ lib, buildPythonPackage, fetchFromGitHub, hatchling, hatch-vcs, }: buildPythonPackage rec { pname = "astropy-iers-data"; version = "0.2025.8.4.0.42.59"; pyproject = true; src = fetchFromGitHub { owner = "astropy"; repo = "astropy-iers-data"; tag = "v${version}"; hash = "sha256-Izqm626PZzjnMNUzPW2x15ER7fn5f9+m2X434vXV/yo="; }; build-system = [ hatchling hatch-vcs ]; 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 = [ ]; }; }