about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/msgpack/default.nix
blob: 805d347389c0f01694bad02b206fd25f02f907f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, setuptools
}:

buildPythonPackage rec {
  pname = "msgpack";
  version = "1.0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e";
  };

  nativeBuildInputs = [
    setuptools
  ];

  checkInputs = [ pytestCheckHook ];

  meta = with lib;  {
    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 = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}