mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
Revert "Merge pull request #256497 from NickCao/python-msgpack"
This reverts commit378fbaff98
, reversing changes made to4b786de439
. 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:
parent
c96a78b5a3
commit
90b656d6db
@ -1,29 +1,25 @@
|
||||
{ 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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user