depot/third_party/nixpkgs/pkgs/development/python-modules/tiler/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

41 lines
742 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, numpy
, tqdm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tiler";
version = "0.5.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
tqdm
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "tiler" ];
meta = with lib; {
description = "N-dimensional NumPy array tiling and merging with overlapping, padding and tapering";
homepage = "https://the-lay.github.io/tiler/";
license = licenses.mit;
maintainers = with maintainers; [ atila ];
};
}