mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
Merge pull request #182754 from AtilaSaraiva/tiler
tiler: init at 0.5.7
This commit is contained in:
commit
4e4a015adb
pkgs
36
pkgs/development/python-modules/tiler/default.nix
Normal file
36
pkgs/development/python-modules/tiler/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user