Unverified Commit 756abd4a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents a98a4fc0 0fb1590d
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
  fetchFromGitHub,
  jsonconversion,
  pytestCheckHook,
  pythonOlder,
  pytest_7,
  setuptools,
  six,
  tabulate,
@@ -17,8 +17,6 @@ buildPythonPackage rec {
  version = "0.13.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "amazon-ion";
    repo = "ion-python";
@@ -33,9 +31,9 @@ buildPythonPackage rec {
      --replace "'pytest-runner'," ""
  '';

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    jsonconversion
    six
  ];
@@ -43,7 +41,7 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    cbor2
    docopt
    pytestCheckHook
    (pytestCheckHook.override { pytest = pytest_7; })
    tabulate
  ];