lol

Revert "Merge pull request #256497 from NickCao/python-msgpack"

This reverts commit 378fbaff985bb69424db700f0ec67aad8f83ad6f, reversing
changes made to 4b786de439279a1b09b2ba3256770d71b2698835.

As they caused breakage for borgbackup which is quite a ubiquitious
software for backupping and stopping all updates on the
nixos-unstable-small channel as it is hard to remove such software from
your configuration.

Thankfully, 1.0.6 and 1.0.7 changelog:

https://github.com/msgpack/msgpack-python/releases/tag/v1.0.6
https://github.com/msgpack/msgpack-python/releases/tag/v1.0.7

are not security updates, this should not cause issues.

+7 -11
+7 -11
pkgs/development/python-modules/msgpack/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 3 + , fetchPypi 4 4 , pytestCheckHook 5 5 , pythonOlder 6 6 , setuptools 7 - , cython_3 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "msgpack"; 12 - version = "1.0.7"; 13 - pyproject = true; 11 + version = "1.0.5"; 12 + format = "setuptools"; 14 13 15 - disabled = pythonOlder "3.8"; 14 + disabled = pythonOlder "3.6"; 16 15 17 - src = fetchFromGitHub { 18 - owner = "msgpack"; 19 - repo = "msgpack-python"; 20 - rev = "refs/tags/v${version}"; 21 - hash = "sha256-ayEyvKiTYPdhy4puUjtyGIR+jsTXd2HRINaAYxQGTZM="; 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-wHVUQoTq3Fzdxw9HVzMdmdy8FrK71ISdFfiq5M820xw="; 22 19 }; 23 20 24 21 nativeBuildInputs = [ 25 22 setuptools 26 - cython_3 27 23 ]; 28 24 29 25 nativeCheckInputs = [