3
0
Fork 0
forked from mirrors/nixpkgs

python39Packages.herepy: fix requests depedency pin

This commit is contained in:
Sandro Jäckel 2021-08-25 13:15:57 +02:00
parent d3e97af3b3
commit 96af2a867f
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -20,6 +20,11 @@ buildPythonPackage rec {
sha256 = "sha256-05x3EQoyv38j4UcixN0sf5BI2oTjfasAIQyZqQSjdPM=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "requests==2.25.1" "requests>=2.25.1"
'';
propagatedBuildInputs = [
requests
];