forked from mirrors/nixpkgs
pythonPackages.msgpack: renamed to msgpack-python
This commit is contained in:
parent
fec3788753
commit
e2859068b1
|
@ -12,7 +12,7 @@ pythonPackages.buildPythonApplication rec {
|
||||||
sha256 = "04sgns9qczzw2152gqdr6bjyy4fmgs26cz8n3qck94l0j51rxhz8";
|
sha256 = "04sgns9qczzw2152gqdr6bjyy4fmgs26cz8n3qck94l0j51rxhz8";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [ msgpack pyqt4 numpy pyopencl ] ++ [ openssl ];
|
propagatedBuildInputs = with pythonPackages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
# Remove interaction and misleading output
|
# Remove interaction and misleading output
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, mock
|
, mock
|
||||||
, unittest2
|
, unittest2
|
||||||
, msgpack
|
, msgpack-python
|
||||||
, requests
|
, requests
|
||||||
, flask
|
, flask
|
||||||
, gevent
|
, gevent
|
||||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||||
sed -i s/"pyzmq=="/"pyzmq>="/ setup.py
|
sed -i s/"pyzmq=="/"pyzmq>="/ setup.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ msgpack requests flask gevent pyzmq ];
|
propagatedBuildInputs = [ msgpack-python requests flask gevent pyzmq ];
|
||||||
buildInputs = [ mock unittest2 ];
|
buildInputs = [ mock unittest2 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
|
@ -42,7 +42,7 @@ in pythonPackages.buildPythonApplication rec {
|
||||||
pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests
|
pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests
|
||||||
signedjson systemd twisted ujson unpaddedbase64 pyyaml
|
signedjson systemd twisted ujson unpaddedbase64 pyyaml
|
||||||
matrix-angular-sdk bleach netaddr jinja2 psycopg2
|
matrix-angular-sdk bleach netaddr jinja2 psycopg2
|
||||||
psutil msgpack lxml matrix-synapse-ldap3
|
psutil msgpack-python lxml matrix-synapse-ldap3
|
||||||
phonenumbers jsonschema affinity bcrypt
|
phonenumbers jsonschema affinity bcrypt
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec {
|
||||||
lz4 openssl python3Packages.setuptools_scm
|
lz4 openssl python3Packages.setuptools_scm
|
||||||
] ++ stdenv.lib.optionals stdenv.isLinux [ acl ];
|
] ++ stdenv.lib.optionals stdenv.isLinux [ acl ];
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
cython msgpack
|
cython msgpack-python
|
||||||
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ llfuse ];
|
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ llfuse ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
|
@ -3642,7 +3642,7 @@ in {
|
||||||
|
|
||||||
buildInputs = with self; [ pytest docutils ];
|
buildInputs = with self; [ pytest docutils ];
|
||||||
propagatedBuildInputs = with self; [
|
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
|
psutil botocore zict lz4 sortedcollections sortedcontainers
|
||||||
] ++ (if !isPy3k then [ singledispatch ] else []);
|
] ++ (if !isPy3k then [ singledispatch ] else []);
|
||||||
|
|
||||||
|
@ -10551,7 +10551,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
msgpack = buildPythonPackage rec {
|
msgpack-python = buildPythonPackage rec {
|
||||||
name = "msgpack-python-${version}";
|
name = "msgpack-python-${version}";
|
||||||
version = "0.4.7";
|
version = "0.4.7";
|
||||||
|
|
||||||
|
@ -20440,7 +20440,7 @@ EOF
|
||||||
# which we cannot add because of circular dependency.
|
# which we cannot add because of circular dependency.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ msgpack ]
|
propagatedBuildInputs = with self; [ msgpack-python ]
|
||||||
++ optional (!isPyPy) greenlet
|
++ optional (!isPyPy) greenlet
|
||||||
++ optional (pythonOlder "3.4") trollius;
|
++ optional (pythonOlder "3.4") trollius;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue