nixpkgs/pkgs/development/python-modules/msgpack/default.nix
2018-02-10 15:10:55 +01:00

29 lines
514 B
Nix

{ 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 = ?? ;
};
}