Skip to content

Commit 3eeaa42

Browse files
authored
python313Packages.libcst: 1.6.0 -> 1.7.0 (#394154)
2 parents 0bfce96 + ba2b22f commit 3eeaa42

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

pkgs/development/python-modules/libcst/default.nix

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,30 @@
1010
libiconv,
1111
pytestCheckHook,
1212
python,
13-
pythonOlder,
1413
pyyaml,
1514
rustPlatform,
1615
rustc,
1716
setuptools-rust,
1817
setuptools-scm,
19-
typing-extensions,
20-
typing-inspect,
2118
ufmt,
2219
}:
2320

2421
buildPythonPackage rec {
2522
pname = "libcst";
26-
version = "1.6.0";
23+
version = "1.7.0";
2724
pyproject = true;
2825

29-
disabled = pythonOlder "3.9";
30-
3126
src = fetchFromGitHub {
3227
owner = "Instagram";
3328
repo = "LibCST";
3429
tag = "v${version}";
35-
hash = "sha256-OuokZvdaCTgZI1VoXInqs6YNLsVUohaat5IjYYvUeVE=";
30+
hash = "sha256-KqiB1LieRJJ34kJgIlqyMKCzO7iDen8j9+s0ZmrHe+c=";
3631
};
3732

3833
cargoDeps = rustPlatform.fetchCargoVendor {
3934
inherit pname version src;
4035
sourceRoot = "${src.name}/${cargoRoot}";
41-
hash = "sha256-PrWcnhfhc3ZTVwTjzp7cIVlUYeXo164AO687rBI/IoY=";
36+
hash = "sha256-EPS506x8KUFAbZ47ZWtH1q0ndXutM2fOqcsYpXRc0+c=";
4237
};
4338

4439
cargoRoot = "native";
@@ -57,8 +52,6 @@ buildPythonPackage rec {
5752
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
5853

5954
dependencies = [
60-
typing-extensions
61-
typing-inspect
6255
pyyaml
6356
];
6457

@@ -92,7 +85,7 @@ buildPythonPackage rec {
9285
meta = {
9386
description = "Concrete Syntax Tree (CST) parser and serializer library for Python";
9487
homepage = "https://github.com/Instagram/LibCST";
95-
changelog = "https://github.com/Instagram/LibCST/blob/v${version}/CHANGELOG.md";
88+
changelog = "https://github.com/Instagram/LibCST/blob/${src.tag}/CHANGELOG.md";
9689
license = with lib.licenses; [
9790
mit
9891
asl20

0 commit comments

Comments
 (0)