Merge pull request #165399 from SuperSandro2000/msgpack

This commit is contained in:
Sandro 2022-03-26 12:18:55 +01:00 committed by GitHub
commit 5386faf8b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, lib
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
@ -13,17 +14,17 @@ buildPythonPackage rec {
sha256 = "51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e";
};
checkPhase = ''
py.test
'';
nativeBuildInputs = [
setuptools
];
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
meta = {
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 = lib.licenses.asl20;
# maintainers = ?? ;
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}