forked from mirrors/nixpkgs
pythonPackages.msgpack: init at 0.5.4
This commit is contained in:
parent
e2859068b1
commit
b020aef13a
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 = ?? ;
|
||||
};
|
||||
}
|
|
@ -10551,6 +10551,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
msgpack = callPackage ../development/python-modules/msgpack {};
|
||||
|
||||
msgpack-python = buildPythonPackage rec {
|
||||
name = "msgpack-python-${version}";
|
||||
version = "0.4.7";
|
||||
|
|
Loading…
Reference in a new issue