kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / asdf-wcs-schemas / default.nix
blobf59b2cb98803a38823b00689438c49df46651c63
2   lib,
3   asdf-astropy,
4   asdf-coordinates-schemas,
5   asdf-standard,
6   asdf-transform-schemas,
7   asdf,
8   buildPythonPackage,
9   fetchFromGitHub,
10   pytestCheckHook,
11   pythonOlder,
12   setuptools-scm,
13   setuptools,
16 buildPythonPackage rec {
17   pname = "asdf-wcs-schemas";
18   version = "0.4.0";
19   pyproject = true;
21   disabled = pythonOlder "3.10";
23   src = fetchFromGitHub {
24     owner = "asdf-format";
25     repo = "asdf-wcs-schemas";
26     rev = "refs/tags/${version}";
27     hash = "sha256-4CxKLMYXdNkNwkfFRX3YKkS4e+Z3wQgmz8ogbC4Z1vI=";
28   };
30   build-system = [
31     setuptools
32     setuptools-scm
33   ];
35   dependencies = [
36     asdf-coordinates-schemas
37     asdf-standard
38     asdf-transform-schemas
39   ];
41   nativeCheckInputs = [
42     asdf
43     asdf-astropy
44     pytestCheckHook
45   ];
47   pythonImportsCheck = [ "asdf_wcs_schemas" ];
49   meta = with lib; {
50     description = "World Coordinate System (WCS) ASDF schemas";
51     homepage = "https://github.com/asdf-format/asdf-wcs-schemas";
52     changelog = "https://github.com/asdf-format/asdf-wcs-schemas/blob/${version}/CHANGES.rst";
53     license = licenses.bsd3;
54     maintainers = with maintainers; [ fab ];
55   };