Merge pull request #248949 from tjni/tiler

python3.pkgs.tiler: unpin setuptools-scm dependency
This commit is contained in:
OTABI Tomoya 2023-08-16 14:41:00 +09:00 committed by GitHub
commit a544655c5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,10 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchpatch
, fetchPypi , fetchPypi
, setuptools , setuptools
, setuptools-scm
, wheel
, numpy , numpy
, tqdm , tqdm
, pytestCheckHook , pytestCheckHook
@ -17,8 +20,19 @@ buildPythonPackage rec {
hash = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y="; hash = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
}; };
patches = [
# https://github.com/the-lay/tiler/pull/24
(fetchpatch {
name = "unpin-setuptools-scm-dependency.patch";
url = "https://github.com/the-lay/tiler/commit/7a9f7e32c5f9c263c1ae28bfd19c7539556684cb.patch";
hash = "sha256-TMr3LJtiKUxJv2pAzAd8CWs3AtWsF0YS79NzKBN5TKM=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
setuptools-scm
wheel
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [