salt: (3006.7 -> 3007.0)

+3 -9
+3 -9
pkgs/tools/admin/salt/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , python3 4 - , fetchpatch 5 4 , fetchPypi 6 5 , openssl 7 6 # Many Salt modules require various Python modules to be installed, ··· 11 10 12 11 python3.pkgs.buildPythonApplication rec { 13 12 pname = "salt"; 14 - version = "3006.7"; 13 + version = "3007.0"; 15 14 format = "setuptools"; 16 15 17 16 src = fetchPypi { 18 17 inherit pname version; 19 - hash = "sha256-7ZLSG4TrnUefk7qJRoRTQIEX4NwQEGFCFJmejQwhCv0="; 18 + hash = "sha256-Qb+E5x/GVb+KS1LrRA0GIa6WEJaghtIOEy4VEuLt3/g="; 20 19 }; 21 20 22 21 patches = [ 23 - # https://github.com/saltstack/salt/pull/63795 24 - (fetchpatch { 25 - name = "remove-duplicate-scripts.patch"; 26 - url = "https://github.com/saltstack/salt/commit/6b9463836e70e40409dbf653f01aa94ef869dfe7.patch"; 27 - hash = "sha256-VcVdKC8EH4qoWHtq6eEPl8OviR4eA2k/S2lWNQbubJw="; 28 - }) 29 22 ./fix-libcrypto-loading.patch 30 23 ]; 31 24 ··· 57 50 pyyaml 58 51 pyzmq 59 52 requests 53 + tornado 60 54 ] ++ extraInputs; 61 55 62 56 # Don't use fixed dependencies on Darwin