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
@@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, future, gevent, msgpack-python, pyzmq }:
|
||||
{ lib, buildPythonPackage, fetchPypi, future, gevent, msgpack, pyzmq }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zerorpc";
|
||||
@@ -9,7 +9,7 @@ buildPythonPackage rec {
|
||||
sha256 = "14d0nmprs0nm17d8kg2f7qalsi8x7c4damsccqgncylj7mpnk9hh";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ future gevent msgpack-python pyzmq ];
|
||||
propagatedBuildInputs = [ future gevent msgpack pyzmq ];
|
||||
|
||||
doCheck = false; # pypi version doesn't include tests
|
||||
|
||||
|
||||
Reference in New Issue
Block a user