1{ buildPythonPackage
2, fetchPypi
3, pytest
4, lib
5}:
6
7buildPythonPackage rec {
8 pname = "msgpack";
9 version = "1.0.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1109s2yynrahwi64ikax68hx0mbclz8p35afmpphw5dwynb49q7s";
14 };
15
16 checkPhase = ''
17 py.test
18 '';
19
20 checkInputs = [ pytest ];
21
22 meta = {
23 homepage = "https://github.com/msgpack/msgpack-python";
24 description = "MessagePack serializer implementation for Python";
25 changelog = "https://github.com/msgpack/msgpack-python/blob/master/ChangeLog.rst";
26 license = lib.licenses.asl20;
27 # maintainers = ?? ;
28 };
29}