5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
83 lines
1.6 KiB
Nix
83 lines
1.6 KiB
Nix
{ lib
|
|
, astropy
|
|
, astropy-extension-helpers
|
|
, astropy-healpix
|
|
, buildPythonPackage
|
|
, cloudpickle
|
|
, cython
|
|
, dask
|
|
, fetchPypi
|
|
, fsspec
|
|
, numpy
|
|
, pytest-astropy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, scipy
|
|
, setuptools-scm
|
|
, zarr
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reproject";
|
|
version = "0.13.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Y+Ne7ZUgCieWcC4zqfrqPzmr/kGUdFroGfIPKWACaPY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "cython==" "cython>=" \
|
|
--replace "numpy>=2.0.0rc1" "numpy"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
astropy-extension-helpers
|
|
cython
|
|
numpy
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
astropy
|
|
astropy-healpix
|
|
cloudpickle
|
|
dask
|
|
fsspec
|
|
numpy
|
|
scipy
|
|
zarr
|
|
] ++ dask.optional-dependencies.array;
|
|
|
|
nativeCheckInputs = [
|
|
pytest-astropy
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"build/lib*"
|
|
# Avoid failure due to user warning: Distutils was imported before Setuptools
|
|
"-p no:warnings"
|
|
# Uses network
|
|
"--ignore build/lib*/reproject/interpolation/"
|
|
# prevent "'filterwarnings' not found in `markers` configuration option" error
|
|
"-o 'markers=filterwarnings'"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"reproject"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Reproject astronomical images";
|
|
downloadPage = "https://github.com/astropy/reproject";
|
|
homepage = "https://reproject.readthedocs.io";
|
|
changelog = "https://github.com/astropy/reproject/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ smaret ];
|
|
};
|
|
}
|