ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / tiler / default.nix
blobde4517ff32782031b114b336da792fa75ed41cea
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , numpy
6 , tqdm
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "tiler";
12   version = "0.5.7";
13   format = "pyproject";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
18   };
20   nativeBuildInputs = [
21     setuptools
22   ];
24   propagatedBuildInputs = [
25     numpy
26     tqdm
27   ];
29   checkInputs = [
30     pytestCheckHook
31   ];
33   pythonImportsCheck = [ "tiler" ];
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   };