summary refs log blame commit diff
path: root/pkgs/development/python-modules/msgpack/default.nix
blob: 20be837782abb2d498b217f3c1c0db92318b7db3 (plain) (tree)
1
2
3
4
5
6
7
8
9







                        
                    


                          
                                                                                














                                                                     
{ buildPythonPackage
, fetchPypi
, pytest
, lib
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "ea3c2f859346fcd55fc46e96885301d9c2f7a36d453f5d8f2967840efa1e1830";
  };

  checkPhase = ''
    py.test
  '';

  checkInputs = [ pytest ];

  meta = {
    homepage = https://github.com/msgpack/msgpack-python;
    description = "MessagePack serializer implementation for Python";
    license = lib.licenses.asl20;
    # maintainers =  ?? ;
  };
}