File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
pkgs/development/python-modules Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 3333
3434buildPythonPackage rec {
3535 pname = "rasterio" ;
36- version = "1.4.2 " ;
36+ version = "1.4.3 " ;
3737 format = "pyproject" ;
3838
3939 disabled = pythonOlder "3.8" ;
4040
4141 src = fetchFromGitHub {
4242 owner = "rasterio" ;
4343 repo = "rasterio" ;
44- rev = "refs/tags/ ${ version } " ;
45- hash = "sha256-YGSd0IG6TWnHmDiVEE3F2KNQ4dXJhkPqAJsIrWyuHos =" ;
44+ tag = version ;
45+ hash = "sha256-InejYBRa4i0E2GxEWbtBpaErtcoYrhtypAlRtMlUoDk =" ;
4646 } ;
4747
4848 nativeBuildInputs = [
Original file line number Diff line number Diff line change 33 buildPythonPackage ,
44 pythonOlder ,
55 fetchFromGitHub ,
6+ fetchpatch ,
7+
68 # build-system
79 setuptools ,
810 # dependencies
@@ -31,6 +33,14 @@ buildPythonPackage rec {
3133 hash = "sha256-0YsGu8JuYrb6lWuC3RQ4jCkulxxFpnd0eaRajCwtFHo=" ;
3234 } ;
3335
36+ patches = [
37+ # https://github.com/corteva/rioxarray/issues/836
38+ ( fetchpatch {
39+ url = "https://github.com/corteva/rioxarray/commit/6294b7468587b8c243ee4f561a90ca8de90ea0f1.patch" ;
40+ hash = "sha256-0IvDAr17ymMN1J2vC1U3z/2N1Np1RaRjCAODZthQz8g=" ;
41+ } )
42+ ] ;
43+
3444 build-system = [ setuptools ] ;
3545
3646 dependencies = [
You can’t perform that action at this time.
0 commit comments