1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 21:39:21 +03:00
nixpkgs/pkgs/development/python-modules/msgpack/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
692 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2018-02-10 14:19:13 +01:00
, fetchPypi
, pytestCheckHook
, setuptools
2018-02-10 14:19:13 +01:00
}:
buildPythonPackage rec {
pname = "msgpack";
version = "1.0.3";
2018-02-10 14:19:13 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e";
2018-02-10 14:19:13 +01:00
};
nativeBuildInputs = [
setuptools
];
2018-02-10 14:19:13 +01:00
checkInputs = [ pytestCheckHook ];
2018-02-10 14:19:13 +01:00
meta = with lib; {
homepage = "https://github.com/msgpack/msgpack-python";
2018-02-10 14:19:13 +01:00
description = "MessagePack serializer implementation for Python";
changelog = "https://github.com/msgpack/msgpack-python/blob/master/ChangeLog.rst";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
2018-02-10 14:19:13 +01:00
};
}