tiler: init at 0.5.7

This commit is contained in:
Átila Saraiva 2022-07-24 21:31:49 -03:00
parent 31997025a4
commit 16bc1830e5
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, tqdm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tiler";
version = "0.5.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
};
propagatedBuildInputs = [
numpy
tqdm
];
checkInputs = [
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 ];
};
}

View File

@ -10609,6 +10609,8 @@ in {
tilequant = callPackage ../development/python-modules/tilequant { };
tiler = callPackage ../development/python-modules/tiler { };
tilestache = callPackage ../development/python-modules/tilestache { };
timeago = callPackage ../development/python-modules/timeago { };