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
python3Packages.pygmars: 0.9.0 -> 1.0.0
R. Ryantm
9 months ago
27c2dde4
77110a51
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pygmars
default.nix
+3
-3
pkgs/development/python-modules/pygmars/default.nix
reviewed
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "pygmars";
12
12
-
version = "0.9.0";
12
12
+
version = "1.0.0";
13
13
pyproject = true;
14
14
15
15
disabled = pythonOlder "3.9";
···
18
18
owner = "nexB";
19
19
repo = "pygmars";
20
20
tag = "v${version}";
21
21
-
hash = "sha256-OhmTD83p/4tCMoCXy35/0fy8Tw1usn27dJyzpOeGlkU=";
21
21
+
hash = "sha256-AbBhWR9ycOFrxS7Vz0bSsSyS3FEEm2bXJAvMhIba6XQ=";
22
22
};
23
23
24
24
dontConfigure = true;
···
32
32
meta = with lib; {
33
33
description = "Python lexing and parsing library";
34
34
homepage = "https://github.com/nexB/pygmars";
35
35
-
changelog = "https://github.com/aboutcode-org/pygmars/blob/v${version}/CHANGELOG.rst";
35
35
+
changelog = "https://github.com/aboutcode-org/pygmars/blob/${src.tag}/CHANGELOG.rst";
36
36
license = with licenses; [ asl20 ];
37
37
maintainers = with maintainers; [ fab ];
38
38
};