about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-07 11:36:39 +0200
committerGitHub <noreply@github.com>2024-05-07 11:36:39 +0200
commit1bd848f93d98a19c25676527a1627f78b0f099da (patch)
tree6be3849457ee01f2ed2200526018a9e6670203f3 /pkgs
parentdb58f2b2607cec55359bad689b934e64bf34c0f1 (diff)
parentc346396257496014da9fb5a931113609b2c2b356 (diff)
Merge pull request #309729 from annaleeleaves/fix-scrapy
python311Packages.scrapy: unbreak tests with upstream patch
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/scrapy/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix
index 68bb9460c14fd..058f1f8f56075 100644
--- a/pkgs/development/python-modules/scrapy/default.nix
+++ b/pkgs/development/python-modules/scrapy/default.nix
@@ -5,6 +5,7 @@
 , cryptography
 , cssselect
 , fetchPypi
+, fetchpatch
 , glibcLocales
 , installShellFiles
 , itemadapter
@@ -43,6 +44,16 @@ buildPythonPackage rec {
     hash = "sha256-czoDnHQj5StpvygQtTMgk9TkKoSEYDWcB7Auz/j3Pr4=";
   };
 
+  patches = [
+    # https://github.com/scrapy/scrapy/pull/6316
+    # fix test_get_func_args. remove on next update
+    (fetchpatch {
+      name = "test_get_func_args.patch";
+      url = "https://github.com/scrapy/scrapy/commit/b1fe97dc6c8509d58b29c61cf7801eeee1b409a9.patch";
+      hash = "sha256-POlmsuW4SD9baKwZieKfmlp2vtdlb7aKQ62VOmNXsr0=";
+    })
+  ];
+
   nativeBuildInputs = [
     installShellFiles
     setuptools