2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-24 05:00:19 +00:00

Merge pull request from AtilaSaraiva/tiler

tiler: init at 0.5.7
This commit is contained in:
superherointj 2022-07-24 22:19:40 -03:00 committed by GitHub
commit 4e4a015adb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions
pkgs
development/python-modules/tiler
top-level

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

@ -10613,6 +10613,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 { };