Unverified Commit 29912337 authored by melvyn's avatar melvyn
Browse files

python3Packages.xdis: 6.0.5 -> 6.1.0

parent 97b17f32
Loading
Loading
Loading
Loading
+12 −15
Original line number Diff line number Diff line
@@ -11,25 +11,18 @@

buildPythonPackage rec {
  pname = "xdis";
  version = "6.0.5";
  version = "6.1.0";
  format = "setuptools";

  # No support for Python 3.11, https://github.com/rocky/python-xdis/issues/98
  disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "rocky";
    repo = "python-xdis";
    rev = "refs/tags/${version}";
    hash = "sha256-3mL0EuPHF/dithovrYvMjweYGwGhrN75N9MRfLjNC34=";
    hash = "sha256-KgKTO99T2/be1sBs5rY3Oy7/Yl9WGgdG3hqqkZ7D7ZY=";
  };

  postPatch = ''
    # Our Python release is not in the test matrix
    substituteInPlace xdis/magics.py \
      --replace "3.10.4" "3.10.5 3.10.6 3.10.7 3.10.8 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14"
  '';

  propagatedBuildInputs = [
    click
    six
@@ -43,15 +36,19 @@ buildPythonPackage rec {
    "xdis"
  ];

  disabledTestPaths = [
    # import file mismatch:
    # imported module 'test_disasm' has this __file__ attribute:
    #   /build/source/pytest/test_disasm.py
    # which is not the same as the test file we want to collect:
    #   /build/source/test_unit/test_disasm.py
  disabledTestPaths = [
    "test_unit/test_disasm.py"

    # Doesn't run on non-2.7 but has global-level mis-import
    "test_unit/test_dis27.py"
  ];


  disabledTests = [
    # AssertionError: events did not match expectation
    "test_big_linenos"