38 lines
622 B
Nix
38 lines
622 B
Nix
{
|
|
fetchPypi,
|
|
python3Packages,
|
|
arcosparse,
|
|
}:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "copernicusmarine";
|
|
version = "2.2.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "copernicusmarine";
|
|
sha256 = "sha256-5T3iH4Hh08wIao2MMveb/bVnVz0pK0PoN4CRk811P0g=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
nativeBuildInputs = [ python3Packages.poetry-core ];
|
|
propagatedBuildInputs = with python3Packages; [
|
|
boto3
|
|
click
|
|
dask
|
|
h5netcdf
|
|
arcosparse
|
|
lxml
|
|
numpy
|
|
pydantic
|
|
pystac
|
|
requests
|
|
semver
|
|
setuptools
|
|
tqdm
|
|
xarray
|
|
zarr
|
|
];
|
|
}
|