tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.u-msgpack-python: 2.7.2 -> 2.8.0
Theodore Ni
2 years ago
9dbecb2b
d2d2edea
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
u-msgpack-python
default.nix
+5
-4
pkgs/development/python-modules/u-msgpack-python/default.nix
···
7
8
buildPythonPackage rec {
9
pname = "u-msgpack-python";
10
-
version = "2.7.2";
0
11
12
src = fetchPypi {
13
inherit pname version;
14
-
hash = "sha256-6G96xqoO9MbEnwBLT9Q1vOmcI+LdXXMAPz+YFgJMK9g=";
15
};
16
17
-
LC_ALL="en_US.UTF-8";
18
19
buildInputs = [ glibcLocales ];
20
···
23
meta = {
24
description = "A portable, lightweight MessagePack serializer and deserializer written in pure Python";
25
homepage = "https://github.com/vsergeev/u-msgpack-python";
0
26
license = lib.licenses.mit;
27
};
28
-
29
}
···
7
8
buildPythonPackage rec {
9
pname = "u-msgpack-python";
10
+
version = "2.8.0";
11
+
format = "setuptools";
12
13
src = fetchPypi {
14
inherit pname version;
15
+
hash = "sha256-uAGoPW7XXm30HkRRi08qnCIdwtpLzVOA46D+2lILxho=";
16
};
17
18
+
env.LC_ALL="en_US.UTF-8";
19
20
buildInputs = [ glibcLocales ];
21
···
24
meta = {
25
description = "A portable, lightweight MessagePack serializer and deserializer written in pure Python";
26
homepage = "https://github.com/vsergeev/u-msgpack-python";
27
+
changelog = "https://github.com/vsergeev/u-msgpack-python/blob/v${version}/CHANGELOG.md";
28
license = lib.licenses.mit;
29
};
0
30
}