2016-12-25 11:11:45 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
2018-06-23 15:27:58 +02:00
|
|
|
, fetchPypi
|
2016-12-25 11:11:45 +01:00
|
|
|
, glibcLocales
|
2022-08-06 12:32:04 -04:00
|
|
|
, unittestCheckHook
|
2016-12-25 11:11:45 +01:00
|
|
|
}:
|
|
|
|
|
2017-11-09 19:26:09 +08:00
|
|
|
buildPythonPackage rec {
|
2016-12-25 11:11:45 +01:00
|
|
|
pname = "u-msgpack-python";
|
2022-12-30 20:13:55 +01:00
|
|
|
version = "2.7.2";
|
2016-12-25 11:11:45 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-12-30 20:13:55 +01:00
|
|
|
sha256 = "sha256-6G96xqoO9MbEnwBLT9Q1vOmcI+LdXXMAPz+YFgJMK9g=";
|
2016-12-25 11:11:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
|
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
|
2022-08-06 12:32:04 -04:00
|
|
|
checkInputs = [ unittestCheckHook ];
|
2016-12-25 11:11:45 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A portable, lightweight MessagePack serializer and deserializer written in pure Python";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/vsergeev/u-msgpack-python";
|
2016-12-25 11:11:45 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
|
2016-12-25 16:17:33 +01:00
|
|
|
}
|