diff options
Diffstat (limited to 'pkgs/development/python-modules/rtree/default.nix')
-rw-r--r-- | pkgs/development/python-modules/rtree/default.nix | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/rtree/default.nix b/pkgs/development/python-modules/rtree/default.nix index ff4b3b85e9cf..382998464285 100644 --- a/pkgs/development/python-modules/rtree/default.nix +++ b/pkgs/development/python-modules/rtree/default.nix @@ -1,18 +1,19 @@ -{ lib -, stdenv -, buildPythonPackage -, fetchFromGitHub -, libspatialindex -, numpy -, pytestCheckHook -, pythonOlder -, setuptools -, wheel +{ + lib, + stdenv, + buildPythonPackage, + fetchFromGitHub, + libspatialindex, + numpy, + pytestCheckHook, + pythonOlder, + setuptools, + wheel, }: buildPythonPackage rec { pname = "rtree"; - version = "1.2.0"; + version = "1.3.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +22,7 @@ buildPythonPackage rec { owner = "Toblerity"; repo = "rtree"; rev = "refs/tags/${version}"; - hash = "sha256-RmAiyYrkUMBN/ebmo27WvFcRmYlKkywuQHLLUbluTTw="; + hash = "sha256-yuSPRb8SRz+FRmwFCKDx+gtp9IWaneQ84jDuZP7TX0A="; }; postPatch = '' @@ -48,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/Toblerity/rtree"; changelog = "https://github.com/Toblerity/rtree/blob/${version}/CHANGES.rst"; license = licenses.mit; - maintainers = with maintainers; [ bgamari ]; + maintainers = with maintainers; teams.geospatial.members ++ [ bgamari ]; }; } |