tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pure-protobuf: 3.1.3 -> 3.1.4
R. Ryantm
1 year ago
b559c1b2
e9e9e075
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pure-protobuf
default.nix
+3
-3
pkgs/development/python-modules/pure-protobuf/default.nix
reviewed
···
14
14
15
15
buildPythonPackage rec {
16
16
pname = "pure-protobuf";
17
17
-
version = "3.1.3";
17
17
+
version = "3.1.4";
18
18
19
19
format = "pyproject";
20
20
# < 3.10 requires get-annotations which isn't packaged yet
···
24
24
owner = "eigenein";
25
25
repo = "protobuf";
26
26
tag = version;
27
27
-
hash = "sha256-AsiJDi3SF3nlWKFvZujUsoHY8AJ21JKzEuTdR9FtFQI=";
27
27
+
hash = "sha256-k67AvY9go62BZN7kCg+kFo9+bQB3wGJVbLra5pOhkPU=";
28
28
};
29
29
30
30
build-system = [
···
49
49
meta = with lib; {
50
50
description = "Python implementation of Protocol Buffers with dataclass-based schemas";
51
51
homepage = "https://github.com/eigenein/protobuf";
52
52
-
changelog = "https://github.com/eigenein/protobuf/releases/tag/${version}";
52
52
+
changelog = "https://github.com/eigenein/protobuf/releases/tag/${src.tag}";
53
53
license = licenses.mit;
54
54
maintainers = with maintainers; [ chuangzhu ];
55
55
};