Skip to content

Commit

Permalink
salt: fix urllib.parse module
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiritLooper committed Jan 20, 2025
1 parent e8c0a21 commit a57a29c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/by-name/sa/salt/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
stdenv,
python3,
fetchpatch,
fetchPypi,
openssl,
# Many Salt modules require various Python modules to be installed,
Expand All @@ -21,6 +22,11 @@ python3.pkgs.buildPythonApplication rec {

patches = [
./fix-libcrypto-loading.patch
(fetchpatch {
name = "urllib.patch";
url = "https://src.fedoraproject.org/rpms/salt/raw/1c6e7b7a88fb81902f5fcee32e04fa80713b81f8/f/urllib.patch";
hash = "sha256-yldIurafduOAYpf2X0PcTQyyNjz5KKl/N7J2OTEF/c0=";
})
];

postPatch = ''
Expand Down

0 comments on commit a57a29c

Please sign in to comment.