Skip to content

Commit

Permalink
Merge pull request #248949 from tjni/tiler
Browse files Browse the repository at this point in the history
python3.pkgs.tiler: unpin setuptools-scm dependency
  • Loading branch information
natsukium authored Aug 16, 2023
2 parents 9133bcd + 62cf93c commit a544655
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/development/python-modules/tiler/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, setuptools
, setuptools-scm
, wheel
, numpy
, tqdm
, pytestCheckHook
Expand All @@ -17,8 +20,19 @@ buildPythonPackage rec {
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 = [
setuptools
setuptools-scm
wheel
];

propagatedBuildInputs = [
Expand Down

0 comments on commit a544655

Please sign in to comment.