Skip to content

Commit 7b4e8d4

Browse files
authored
Merge pull request #2262 from tweag/nixpkgs-update
Use default python3 version from nixpkgs
2 parents a5e4216 + b6968cd commit 7b4e8d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

non_module_dev_deps.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def repositories(*, bzlmod):
119119

120120
nixpkgs_package(
121121
name = "sphinx",
122-
attribute_path = "python39Packages.sphinx",
122+
attribute_path = "python3Packages.sphinx",
123123
repository = "@nixpkgs_default",
124124
)
125125

rules_haskell_tests/shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mkShell {
3131
# check the start script for problems
3232
shellcheck
3333
file
34-
] ++ lib.optionals docTools [ graphviz python39Packages.sphinx zip unzip ];
34+
] ++ lib.optionals docTools [ graphviz python3Packages.sphinx zip unzip ];
3535

3636
packages = [ bazel_6 ];
3737

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mkShell {
3939
shellcheck
4040
file
4141
]
42-
++ lib.optionals docTools [ graphviz python39Packages.sphinx zip unzip ]
42+
++ lib.optionals docTools [ graphviz python3Packages.sphinx zip unzip ]
4343
++ lib.optional stdenv.isDarwin macOS-security;
4444

4545
packages = [ bazel_6 ];

0 commit comments

Comments
 (0)