nixpkgs/pkgs/development/python-modules/msgpack/default.nix

29 lines
516 B
Nix
Raw Normal View History

2018-02-10 13:19:13 +00:00
{ buildPythonPackage
, fetchPypi
, pytest
, lib
}:
buildPythonPackage rec {
pname = "msgpack";
2020-02-23 01:58:29 +00:00
version = "1.0.0";
2018-02-10 13:19:13 +00:00
src = fetchPypi {
inherit pname version;
2020-02-23 01:58:29 +00:00
sha256 = "1h5mxh84rcw04dvxy1qbfn2hisavfqgilh9k09rgyjhd936dad4m";
2018-02-10 13:19:13 +00:00
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest ];
meta = {
homepage = "https://github.com/msgpack/msgpack-python";
2018-02-10 13:19:13 +00:00
description = "MessagePack serializer implementation for Python";
license = lib.licenses.asl20;
# maintainers = ?? ;
};
}