depot/third_party/nixpkgs/pkgs/development/python-modules/reproject/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

81 lines
1.5 KiB
Nix

{ lib
, astropy
, astropy-extension-helpers
, astropy-healpix
, buildPythonPackage
, cloudpickle
, cython
, dask
, fetchPypi
, fsspec
, numpy
, oldest-supported-numpy
, pytest-astropy
, pytestCheckHook
, pythonOlder
, scipy
, setuptools-scm
, zarr
}:
buildPythonPackage rec {
pname = "reproject";
version = "0.13.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-lL6MkKVSWmV6KPkG/9fjc2c2dFQ14i9fiJAr3VFfcuI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "cython==" "cython>="
'';
nativeBuildInputs = [
astropy-extension-helpers
cython
numpy
oldest-supported-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/"
];
pythonImportsCheck = [
"reproject"
];
meta = with lib; {
description = "Reproject astronomical images";
downloadPage = "https://github.com/astropy/reproject";
homepage = "https://reproject.readthedocs.io";
license = licenses.bsd3;
maintainers = with maintainers; [ smaret ];
};
}