tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.paypalhttp: fix http header case issue
Martin Weinelt
1 year ago
fd756758
e40f9eb4
+9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
paypalhttp
default.nix
+9
pkgs/development/python-modules/paypalhttp/default.nix
···
2
2
lib,
3
3
buildPythonPackage,
4
4
fetchFromGitHub,
5
5
+
fetchpatch2,
5
6
6
7
# propagates
7
8
pyopenssl,
···
24
25
tag = version;
25
26
hash = "sha256-3ihcpYtpcejPkiyf4g4jveyNU6flQB2sv9EZ5Pd7tUc=";
26
27
};
28
28
+
29
29
+
patches = [
30
30
+
(fetchpatch2 {
31
31
+
# fix content-type header case sensitiyivy
32
32
+
url = "https://github.com/paypal/paypalhttp_python/commit/72609783230663b8e34c6f0384837db7b166c8f4.patch";
33
33
+
hash = "sha256-K2hO3XRrJ+Gm+rLtWRPy0E2syLS4RhNNHIA3w4xVYtY=";
34
34
+
})
35
35
+
];
27
36
28
37
postPatch = ''
29
38
substituteInPlace tests/http_response_test.py \