{ lib, asdf-astropy, asdf-wcs-schemas, asdf, astropy, buildPythonPackage, fetchFromGitHub, numpy, pytest-astropy, pytestCheckHook, scipy, setuptools-scm, setuptools, }: buildPythonPackage rec { pname = "gwcs"; version = "0.26.1"; pyproject = true; src = fetchFromGitHub { owner = "spacetelescope"; repo = "gwcs"; tag = version; hash = "sha256-S7+jDWCyQPQJAVgb/+BHC03+1aYyw2TK6SmkEz+k6u4="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ asdf asdf-astropy asdf-wcs-schemas astropy numpy scipy ]; nativeCheckInputs = [ pytest-astropy pytestCheckHook ]; pythonImportsCheck = [ "gwcs" ]; meta = { description = "Module to manage the Generalized World Coordinate System"; homepage = "https://github.com/spacetelescope/gwcs"; changelog = "https://github.com/spacetelescope/gwcs/blob/${src.tag}/CHANGES.rst"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; }