3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.msgpack: init at 0.5.4

This commit is contained in:
Eric Wolf 2018-02-10 14:19:13 +01:00
parent e2859068b1
commit b020aef13a
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ buildPythonPackage
, fetchPypi
, pytest
, lib
}:
buildPythonPackage rec {
pname = "msgpack";
version = "0.5.4";
src = fetchPypi {
inherit pname version;
sha256 = "13ckbs2qc4dww7fddnm9cw116j4spgxqab49ijmj6jr178ypwl80";
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest ];
meta = {
homepage = https://github.com/msgpack/msgpack-python;
description = "MessagePack serializer implementation for Python";
license = lib.licenses.asl20;
# maintainers = ?? ;
};
}

View file

@ -10551,6 +10551,8 @@ in {
};
};
msgpack = callPackage ../development/python-modules/msgpack {};
msgpack-python = buildPythonPackage rec {
name = "msgpack-python-${version}";
version = "0.4.7";