diff options
Diffstat (limited to 'pkgs/development/python-modules/gwcs/default.nix')
-rw-r--r-- | pkgs/development/python-modules/gwcs/default.nix | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/gwcs/default.nix b/pkgs/development/python-modules/gwcs/default.nix new file mode 100644 index 000000000000..07b235b41080 --- /dev/null +++ b/pkgs/development/python-modules/gwcs/default.nix @@ -0,0 +1,60 @@ +{ + lib, + asdf-astropy, + asdf-wcs-schemas, + asdf, + astropy, + buildPythonPackage, + fetchFromGitHub, + numpy, + pytest-astropy, + pytestCheckHook, + pythonOlder, + scipy, + setuptools-scm, + setuptools, +}: + +buildPythonPackage rec { + pname = "gwcs"; + version = "0.21.0"; + pyproject = true; + + disabled = pythonOlder "3.10"; + + src = fetchFromGitHub { + owner = "spacetelescope"; + repo = "gwcs"; + rev = "refs/tags/${version}"; + hash = "sha256-76h2lDIaPHj7HarVcE0t5k6CA/hLCwquaz+2wMsKj+Y="; + }; + + build-system = [ + setuptools + setuptools-scm + ]; + + dependencies = [ + asdf + asdf-astropy + asdf-wcs-schemas + astropy + numpy + scipy + ]; + + nativeCheckInputs = [ + pytest-astropy + pytestCheckHook + ]; + + pythonImportsCheck = [ "gwcs" ]; + + meta = with lib; { + description = "Module to manage the Generalized World Coordinate System"; + homepage = "https://github.com/spacetelescope/gwcs"; + changelog = "https://github.com/spacetelescope/gwcs/blob/${version}/CHANGES.rst"; + license = licenses.bsd3; + maintainers = with maintainers; [ fab ]; + }; +} |