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