Files
nixpkgs/pkgs/development/python-modules/astropy-iers-data/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
738 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 = [ ];
};
}