1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 hatchling, 6 hatch-vcs, 7}: 8 9buildPythonPackage rec { 10 pname = "astropy-iers-data"; 11 version = "0.2025.8.4.0.42.59"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "astropy"; 16 repo = "astropy-iers-data"; 17 tag = "v${version}"; 18 hash = "sha256-Izqm626PZzjnMNUzPW2x15ER7fn5f9+m2X434vXV/yo="; 19 }; 20 21 build-system = [ 22 hatchling 23 hatch-vcs 24 ]; 25 26 pythonImportsCheck = [ "astropy_iers_data" ]; 27 28 # no tests 29 doCheck = false; 30 31 meta = with lib; { 32 description = "IERS data maintained by @astrofrog and astropy.utils.iers maintainers"; 33 homepage = "https://github.com/astropy/astropy-iers-data"; 34 license = licenses.bsd3; 35 maintainers = [ ]; 36 }; 37}