pythonPackages.msgpack: renamed to msgpack-python

This commit is contained in:
Eric Wolf 2018-02-10 14:15:18 +01:00
parent fec3788753
commit e2859068b1
5 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "04sgns9qczzw2152gqdr6bjyy4fmgs26cz8n3qck94l0j51rxhz8";
};
propagatedBuildInputs = with pythonPackages; [ msgpack pyqt4 numpy pyopencl ] ++ [ openssl ];
propagatedBuildInputs = with pythonPackages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
preConfigure = ''
# Remove interaction and misleading output

View file

@ -2,7 +2,7 @@
, fetchPypi
, mock
, unittest2
, msgpack
, msgpack-python
, requests
, flask
, gevent
@ -22,7 +22,7 @@ buildPythonPackage rec {
sed -i s/"pyzmq=="/"pyzmq>="/ setup.py
'';
propagatedBuildInputs = [ msgpack requests flask gevent pyzmq ];
propagatedBuildInputs = [ msgpack-python requests flask gevent pyzmq ];
buildInputs = [ mock unittest2 ];
meta = {

View file

@ -42,7 +42,7 @@ in pythonPackages.buildPythonApplication rec {
pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests
signedjson systemd twisted ujson unpaddedbase64 pyyaml
matrix-angular-sdk bleach netaddr jinja2 psycopg2
psutil msgpack lxml matrix-synapse-ldap3
psutil msgpack-python lxml matrix-synapse-ldap3
phonenumbers jsonschema affinity bcrypt
];

View file

@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec {
lz4 openssl python3Packages.setuptools_scm
] ++ stdenv.lib.optionals stdenv.isLinux [ acl ];
propagatedBuildInputs = with python3Packages; [
cython msgpack
cython msgpack-python
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ llfuse ];
preConfigure = ''

View file

@ -3642,7 +3642,7 @@ in {
buildInputs = with self; [ pytest docutils ];
propagatedBuildInputs = with self; [
dask six boto3 s3fs tblib locket msgpack click cloudpickle tornado
dask six boto3 s3fs tblib locket msgpack-python click cloudpickle tornado
psutil botocore zict lz4 sortedcollections sortedcontainers
] ++ (if !isPy3k then [ singledispatch ] else []);
@ -10551,7 +10551,7 @@ in {
};
};
msgpack = buildPythonPackage rec {
msgpack-python = buildPythonPackage rec {
name = "msgpack-python-${version}";
version = "0.4.7";
@ -20440,7 +20440,7 @@ EOF
# which we cannot add because of circular dependency.
doCheck = false;
propagatedBuildInputs = with self; [ msgpack ]
propagatedBuildInputs = with self; [ msgpack-python ]
++ optional (!isPyPy) greenlet
++ optional (pythonOlder "3.4") trollius;