4 astropy-extension-helpers,
21 buildPythonPackage rec {
26 disabled = pythonOlder "3.10";
29 inherit pname version;
30 hash = "sha256-U8jqJ5uLVX8zoeQwr14FPNdHACRA4HK65q2TAtRr5Xk=";
34 substituteInPlace pyproject.toml \
35 --replace "cython==" "cython>="
39 astropy-extension-helpers
45 propagatedBuildInputs = [
54 ] ++ dask.optional-dependencies.array;
63 # Avoid failure due to user warning: Distutils was imported before Setuptools
66 "--ignore build/lib*/reproject/interpolation/"
67 # prevent "'filterwarnings' not found in `markers` configuration option" error
68 "-o 'markers=filterwarnings'"
71 pythonImportsCheck = [ "reproject" ];
74 description = "Reproject astronomical images";
75 downloadPage = "https://github.com/astropy/reproject";
76 homepage = "https://reproject.readthedocs.io";
77 changelog = "https://github.com/astropy/reproject/releases/tag/v${version}";
78 license = licenses.bsd3;
79 maintainers = with maintainers; [ smaret ];