diff options
Diffstat (limited to 'pkgs/development/python-modules/pyproj/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyproj/default.nix | 52 |
1 files changed, 29 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/pyproj/default.nix b/pkgs/development/python-modules/pyproj/default.nix index bb98e96e02a1..56cbbf37bc7b 100644 --- a/pkgs/development/python-modules/pyproj/default.nix +++ b/pkgs/development/python-modules/pyproj/default.nix @@ -1,23 +1,25 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, python -, proj -, pythonOlder -, substituteAll -, cython -, pytestCheckHook -, mock -, certifi -, numpy -, shapely -, pandas -, xarray +{ + lib, + buildPythonPackage, + fetchFromGitHub, + fetchpatch, + pytestCheckHook, + pythonOlder, + substituteAll, + + certifi, + cython, + mock, + numpy, + pandas, + proj, + shapely, + xarray, }: buildPythonPackage rec { pname = "pyproj"; - version = "3.6.1"; + version = "3.7.0"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -25,7 +27,7 @@ buildPythonPackage rec { owner = "pyproj4"; repo = "pyproj"; rev = "refs/tags/${version}"; - hash = "sha256-ynAhu89VpvtQJRkIeVyffQHhd+OvWSiZzaI/7nd6fXA="; + hash = "sha256-uCoWmJ0xtbJ/DHts5+9KR6d6p8vmZqDrI4RFjXQn2fM="; }; # force pyproj to use ${proj} @@ -40,16 +42,14 @@ buildPythonPackage rec { nativeBuildInputs = [ cython ]; buildInputs = [ proj ]; - propagatedBuildInputs = [ - certifi - ]; + propagatedBuildInputs = [ certifi ]; nativeCheckInputs = [ - pytestCheckHook mock numpy - shapely pandas + pytestCheckHook + shapely xarray ]; @@ -110,6 +110,12 @@ buildPythonPackage rec { homepage = "https://github.com/pyproj4/pyproj"; changelog = "https://github.com/pyproj4/pyproj/blob/${src.rev}/docs/history.rst"; license = licenses.mit; - maintainers = with maintainers; teams.geospatial.members ++ [ lsix dotlambda ]; + maintainers = + with maintainers; + teams.geospatial.members + ++ [ + lsix + dotlambda + ]; }; } |