27 lines
484 B
Nix
27 lines
484 B
Nix
{
|
|
fetchPypi,
|
|
python3Packages,
|
|
}:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "arcosparse";
|
|
version = "0.4.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "arcosparse";
|
|
sha256 = "sha256-Z8NW+dsC3uXk101kr8tzsgjAoFb4KNdGkxyFkJ5UhFA=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
nativeBuildInputs = [ python3Packages.poetry-core ];
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pyarrow
|
|
pandas
|
|
pystac
|
|
tqdm
|
|
requests
|
|
];
|
|
}
|