Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 setuptools-scm, 7 wheel, 8 numpy, 9 tqdm, 10 pytestCheckHook, 11}: 12 13buildPythonPackage rec { 14 pname = "tiler"; 15 version = "0.6.0"; 16 pyproject = true; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-ps0uHgzPa+ZoXXrB+0gfuVIEBUNmym/ym6xCxiyHhxA="; 21 }; 22 23 build-system = [ 24 setuptools 25 setuptools-scm 26 wheel 27 ]; 28 29 dependencies = [ 30 numpy 31 tqdm 32 ]; 33 34 nativeCheckInputs = [ pytestCheckHook ]; 35 36 pythonImportsCheck = [ "tiler" ]; 37 38 meta = { 39 description = "N-dimensional NumPy array tiling and merging with overlapping, padding and tapering"; 40 homepage = "https://the-lay.github.io/tiler/"; 41 license = lib.licenses.mit; 42 maintainers = with lib.maintainers; [ atila ]; 43 }; 44}