1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, numpy
6, tqdm
7, pytestCheckHook
8}:
9
10buildPythonPackage rec {
11 pname = "tiler";
12 version = "0.5.7";
13 format = "pyproject";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
18 };
19
20 nativeBuildInputs = [
21 setuptools
22 ];
23
24 propagatedBuildInputs = [
25 numpy
26 tqdm
27 ];
28
29 checkInputs = [
30 pytestCheckHook
31 ];
32
33 pythonImportsCheck = [ "tiler" ];
34
35 meta = with lib; {
36 description = "N-dimensional NumPy array tiling and merging with overlapping, padding and tapering";
37 homepage = "https://the-lay.github.io/tiler/";
38 license = licenses.mit;
39 maintainers = with maintainers; [ atila ];
40 };
41}