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.apischema: pin to pytest 8.3.x
Martin Weinelt
8 months ago
43871700
74fa880a
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
apischema
default.nix
+2
-2
pkgs/development/python-modules/apischema/default.nix
reviewed
···
4
4
fetchFromGitHub,
5
5
graphql-core,
6
6
pytest-asyncio,
7
7
-
pytestCheckHook,
7
7
+
pytest8_3CheckHook,
8
8
pythonOlder,
9
9
setuptools,
10
10
}:
···
37
37
38
38
nativeCheckInputs = [
39
39
pytest-asyncio
40
40
-
pytestCheckHook
40
40
+
pytest8_3CheckHook
41
41
]
42
42
++ lib.flatten (builtins.attrValues optional-dependencies);
43
43