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

29 lines
526 B
Nix
Raw Normal View History

2018-02-10 13:19:13 +00:00
{ buildPythonPackage
, fetchPypi
, pytest
, lib
}:
buildPythonPackage rec {
pname = "msgpack";
2019-02-14 07:37:21 +00:00
version = "0.6.1";
2018-02-10 13:19:13 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:21 +00:00
sha256 = "4008c72f5ef2b7936447dcb83db41d97e9791c83221be13d5e19db0796df1972";
2018-02-10 13:19:13 +00:00
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest ];
meta = {
homepage = https://github.com/msgpack/msgpack-python;
description = "MessagePack serializer implementation for Python";
license = lib.licenses.asl20;
# maintainers = ?? ;
};
}