biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / astropy-iers-data / default.nix
blobe1cdd1febe461ae0c807aa6b1ff768bc0a64029a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7   setuptools-scm,
8   wheel,
9 }:
11 buildPythonPackage rec {
12   pname = "astropy-iers-data";
13   version = "0.2024.06.17.00.31.35";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchFromGitHub {
19     owner = "astropy";
20     repo = "astropy-iers-data";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-hFlDXnxhKuhlCFrF+Uip3Xjc9Jt8UFJcDCST90BmAlg=";
23   };
25   nativeBuildInputs = [
26     setuptools
27     setuptools-scm
28     wheel
29   ];
31   pythonImportsCheck = [ "astropy_iers_data" ];
33   # no tests
34   doCheck = false;
36   meta = with lib; {
37     description = "IERS data maintained by @astrofrog and astropy.utils.iers maintainers";
38     homepage = "https://github.com/astropy/astropy-iers-data";
39     license = licenses.bsd3;
40     maintainers = [ ];
41   };