python: get rid of msgpack-python, fixes #48864
We already have msgpack, which is the same. Building a Python env with `spacy` resulted in a collision between an `.so` provided through both `msgpack` and `msgpack-python`. I don't know why `transitional = True` was set. These kind of things should be documented!
This commit is contained in:
committed by
Frederik Rietdijk
parent
d2ccabaeea
commit
22aef72ff1
@@ -5,7 +5,7 @@
|
||||
, numpy
|
||||
, six
|
||||
, ruamel_yaml
|
||||
, msgpack-python
|
||||
, msgpack
|
||||
, coverage
|
||||
, coveralls
|
||||
, pymongo
|
||||
@@ -24,7 +24,7 @@ buildPythonPackage rec {
|
||||
sha256 = "0vqaaz0dw0ypl6sfwbycpb0qs3ap04c4ghbggklxih66spdlggh6";
|
||||
};
|
||||
|
||||
checkInputs = [ lsof nose numpy msgpack-python coverage coveralls pymongo];
|
||||
checkInputs = [ lsof nose numpy msgpack coverage coveralls pymongo];
|
||||
propagatedBuildInputs = [ six ruamel_yaml ];
|
||||
|
||||
preCheck = ''
|
||||
|
||||
Reference in New Issue
Block a user