pythonPackages.u-msgpack-python: init at 2.3.0
This commit is contained in:
parent
352e167c22
commit
bec4794820
32
pkgs/development/python-modules/u-msgpack-python/default.nix
Normal file
32
pkgs/development/python-modules/u-msgpack-python/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, glibcLocales
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "u-msgpack-python";
|
||||||
|
version = "2.3.0";
|
||||||
|
in buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "d8df6bb0e2a838aa227c39cfd14aa147ab32b3df6871001874e9b9da9ce1760c";
|
||||||
|
};
|
||||||
|
|
||||||
|
LC_ALL="en_US.UTF-8";
|
||||||
|
|
||||||
|
buildInputs = [ glibcLocales ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
python -m unittest discover
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A portable, lightweight MessagePack serializer and deserializer written in pure Python";
|
||||||
|
homepage = https://github.com/vsergeev/u-msgpack-python;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -25867,6 +25867,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
u-msgpack-python = callPackage ../development/python-modules/u-msgpack-python { };
|
||||||
|
|
||||||
umalqurra = buildPythonPackage rec {
|
umalqurra = buildPythonPackage rec {
|
||||||
name = "umalqurra-${version}";
|
name = "umalqurra-${version}";
|
||||||
version = "0.2";
|
version = "0.2";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user