We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a333cf5 commit 75a9c0dCopy full SHA for 75a9c0d
pkgs/development/python-modules/rioxarray/default.nix
@@ -3,6 +3,8 @@
3
buildPythonPackage,
4
pythonOlder,
5
fetchFromGitHub,
6
+ fetchpatch,
7
+
8
# build-system
9
setuptools,
10
# dependencies
@@ -31,6 +33,14 @@ buildPythonPackage rec {
31
33
hash = "sha256-0YsGu8JuYrb6lWuC3RQ4jCkulxxFpnd0eaRajCwtFHo=";
32
34
};
35
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
44
build-system = [ setuptools ];
45
46
dependencies = [
0 commit comments