about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/msgpack/default.nix
blob: 262e5d5ecd0ef2d4b9f6fc781f7ffc84fc470bbf (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
{ buildPythonPackage
, fetchPypi
, pytest
, lib
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1109s2yynrahwi64ikax68hx0mbclz8p35afmpphw5dwynb49q7s";
  };

  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 =  ?? ;
  };
}