We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7081410 + e7b3410 commit af9e505Copy full SHA for af9e505
pkgs/development/python-modules/w3lib/default.nix
@@ -1,6 +1,7 @@
1
{
2
lib,
3
buildPythonPackage,
4
+ fetchpatch,
5
fetchPypi,
6
pytestCheckHook,
7
pythonOlder,
@@ -19,6 +20,13 @@ buildPythonPackage rec {
19
20
hash = "sha256-dW/y2Uxk5ByNfAxZ/qEqXQvFXjOlMceYi0oWPeubB90=";
21
};
22
23
+ patches = [
24
+ (fetchpatch {
25
+ url = "https://github.com/scrapy/w3lib/commit/44dcf9160c3f207658d6ce808307c80c9ca835a2.patch";
26
+ hash = "sha256-fUQ2oWpAJeslgemt+EUxKLH3Ywpg441FCOBLFJCZ+Ac=";
27
+ })
28
+ ];
29
+
30
build-system = [ setuptools ];
31
32
nativeCheckInputs = [ pytestCheckHook ];
0 commit comments