5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{ lib
|
|
, astropy
|
|
, astropy-extension-helpers
|
|
, astropy-healpix
|
|
, buildPythonPackage
|
|
, cython
|
|
, fetchPypi
|
|
, numpy
|
|
, oldest-supported-numpy
|
|
, pytest-astropy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, scipy
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reproject";
|
|
version = "0.10.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-OKxPPKcVVrEVUGR8Zaphn7ur9HOuqQKa9gnMo2RQQME=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "cython==" "cython>="
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
astropy-extension-helpers
|
|
cython
|
|
numpy
|
|
oldest-supported-numpy
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
astropy
|
|
astropy-healpix
|
|
numpy
|
|
scipy
|
|
];
|
|
|
|
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/"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"reproject"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Reproject astronomical images";
|
|
homepage = "https://reproject.readthedocs.io";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ smaret ];
|
|
};
|
|
}
|