mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / astropy-iers-data / default.nix
blob62c728f2f9317e0fd1a6fb34012a7e70bee8dad0
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.9.23.0.31.43";
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-PGr8meqVs9l15+k5DHmcPcGK96ydN0nRUOBVfvCtRUg=";
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   };