Commit 90b656d6 authored by Raito Bezarius's avatar Raito Bezarius
Browse files

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

This reverts commit 378fbaff, reversing
changes made to 4b786de4.

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.
parent c96a78b5
Loading
Loading
Loading
Loading
+7 −11
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
, cython_3
}:

buildPythonPackage rec {
  pname = "msgpack";
  version = "1.0.7";
  pyproject = true;
  version = "1.0.5";
  format = "setuptools";

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "msgpack";
    repo = "msgpack-python";
    rev = "refs/tags/v${version}";
    hash = "sha256-ayEyvKiTYPdhy4puUjtyGIR+jsTXd2HRINaAYxQGTZM=";
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-wHVUQoTq3Fzdxw9HVzMdmdy8FrK71ISdFfiq5M820xw=";
  };

  nativeBuildInputs = [
    setuptools
    cython_3
  ];

  nativeCheckInputs = [