pythonPackages.msgpack: init at 0.5.4
This commit is contained in:
28
pkgs/development/python-modules/msgpack/default.nix
Normal file
28
pkgs/development/python-modules/msgpack/default.nix
Normal 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 = ?? ;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user