salt: (3006.7 -> 3007.0)

+3 -9
+3 -9
pkgs/tools/admin/salt/default.nix
··· 1 { lib 2 , stdenv 3 , python3 4 - , fetchpatch 5 , fetchPypi 6 , openssl 7 # Many Salt modules require various Python modules to be installed, ··· 11 12 python3.pkgs.buildPythonApplication rec { 13 pname = "salt"; 14 - version = "3006.7"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-7ZLSG4TrnUefk7qJRoRTQIEX4NwQEGFCFJmejQwhCv0="; 20 }; 21 22 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 ./fix-libcrypto-loading.patch 30 ]; 31 ··· 57 pyyaml 58 pyzmq 59 requests 60 ] ++ extraInputs; 61 62 # Don't use fixed dependencies on Darwin
··· 1 { lib 2 , stdenv 3 , python3 4 , fetchPypi 5 , openssl 6 # Many Salt modules require various Python modules to be installed, ··· 10 11 python3.pkgs.buildPythonApplication rec { 12 pname = "salt"; 13 + version = "3007.0"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-Qb+E5x/GVb+KS1LrRA0GIa6WEJaghtIOEy4VEuLt3/g="; 19 }; 20 21 patches = [ 22 ./fix-libcrypto-loading.patch 23 ]; 24 ··· 50 pyyaml 51 pyzmq 52 requests 53 + tornado 54 ] ++ extraInputs; 55 56 # Don't use fixed dependencies on Darwin