mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
30 lines
615 B
Nix
30 lines
615 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, lib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "msgpack";
|
|
version = "1.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e";
|
|
};
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/msgpack/msgpack-python";
|
|
description = "MessagePack serializer implementation for Python";
|
|
changelog = "https://github.com/msgpack/msgpack-python/blob/master/ChangeLog.rst";
|
|
license = lib.licenses.asl20;
|
|
# maintainers = ?? ;
|
|
};
|
|
}
|