python313Packages.amazon-ion: use pytest_7 (#446573)

Changed files
+4 -6
pkgs
development
python-modules
amazon-ion
+4 -6
pkgs/development/python-modules/amazon-ion/default.nix
···
fetchFromGitHub,
jsonconversion,
pytestCheckHook,
-
pythonOlder,
+
pytest_7,
setuptools,
six,
tabulate,
···
pname = "amazon-ion";
version = "0.13.0";
pyproject = true;
-
-
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "amazon-ion";
···
--replace "'pytest-runner'," ""
'';
-
nativeBuildInputs = [ setuptools ];
+
build-system = [ setuptools ];
-
propagatedBuildInputs = [
+
dependencies = [
jsonconversion
six
];
···
nativeCheckInputs = [
cbor2
docopt
-
pytestCheckHook
+
(pytestCheckHook.override { pytest = pytest_7; })
tabulate
];