default.nix (668B)
1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 python3Packages, 6 }: 7 8 python3Packages.buildPythonPackage rec { 9 pname = "rio-mucho"; 10 version = "1.0.0"; 11 12 src = fetchFromGitHub { 13 owner = "mapbox"; 14 repo = "rio-mucho"; 15 rev = version; 16 hash = "sha256-yr79Lb02vxp2CN+638S8CFxbtim+zrkjxhjwEkx0XsY="; 17 }; 18 19 dependencies = with python3Packages; [ 20 click 21 numpy 22 rasterio 23 ]; 24 25 nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 26 27 meta = { 28 description = "Parallel processing wrapper for rasterio"; 29 homepage = "https://github.com/mapbox/rio-mucho"; 30 license = lib.licenses.mit; 31 maintainers = [ lib.maintainers.sikmir ]; 32 }; 33 }