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

This reverts commit 378fbaff98, reversing
changes made to 4b786de439.

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.
This commit is contained in:
Raito Bezarius 2023-10-04 01:55:36 +02:00
parent c96a78b5a3
commit 90b656d6db

View File

@ -1,29 +1,25 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools , setuptools
, cython_3
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "msgpack"; pname = "msgpack";
version = "1.0.7"; version = "1.0.5";
pyproject = true; format = "setuptools";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchPypi {
owner = "msgpack"; inherit pname version;
repo = "msgpack-python"; hash = "sha256-wHVUQoTq3Fzdxw9HVzMdmdy8FrK71ISdFfiq5M820xw=";
rev = "refs/tags/v${version}";
hash = "sha256-ayEyvKiTYPdhy4puUjtyGIR+jsTXd2HRINaAYxQGTZM=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
cython_3
]; ];
nativeCheckInputs = [ nativeCheckInputs = [