commit 19ff6f87eda8f6ad1ad3abcca7851d08c268beb6 parent d4be773553133e26260c1b5b6d2ddea43cd33dea Author: Nikolay Korotkiy <sikmir@disroot.org> Date: Sun, 13 Aug 2023 18:56:32 +0400 geotiler: fix build Diffstat:
M | pkgs/development/python-modules/geotiler/default.nix | | | 11 | ++++------- |
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/pkgs/development/python-modules/geotiler/default.nix b/pkgs/development/python-modules/geotiler/default.nix @@ -2,20 +2,17 @@ python3Packages.buildPythonPackage rec { pname = "geotiler"; - version = "0.14.4"; + version = "0.15.0"; + format = "pyproject"; src = fetchFromGitHub { owner = "wrobell"; repo = "geotiler"; rev = "geotiler-${version}"; - hash = "sha256-OEz7LhkmAkfGNTSu5aUeMsNaUa4Whzg9520n3ILbDKw="; + hash = "sha256-xqAsjuUMODZvkSMyGXpP1/FTyqNKPfa8l4Zr2CUHaDY="; }; - postPatch = '' - sed -i '/setuptools_git/d' setup.py - ''; - - propagatedBuildInputs = with python3Packages; [ aiohttp cytoolz numpy pillow ]; + propagatedBuildInputs = with python3Packages; [ aiohttp cytoolz numpy pillow setuptools ]; nativeCheckInputs = with python3Packages; [ pytestCheckHook pytest-cov ];