Unverified Commit 971eb630 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.typed-ast: 1.5.4 -> 1.5.5, disable on python 3.13 (#395426)

parents 7ae71896 2fa3e140
Loading
Loading
Loading
Loading
+16 −17
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonAtLeast,
  fetchFromGitHub,
  setuptools,
  pytest,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "typed-ast";
  version = "1.5.4";
  format = "setuptools";
  version = "1.5.5";
  pyproject = true;

  disabled = pythonOlder "3.6";
  # error: unknown type name ‘PyFutureFeatures’
  disabled = pythonAtLeast "3.13";

  src = fetchFromGitHub {
    owner = "python";
    repo = "typed_ast";
    rev = version;
    hash = "sha256-GRmKw7SRrrIIb61VeB8GLhSKCmLUd54AA+GAf43vor8=";
    tag = version;
    hash = "sha256-A/FA6ngu8/bbpKW9coJ7unm9GQezGuDhgBWjOhAxm2o=";
  };

  nativeCheckInputs = [ pytest ];

  checkPhase = ''
    runHook preCheck
  build-system = [
    setuptools
  ];

    # We can't use pytestCheckHook because that invokes pytest with python -m pytest
    # which adds the current directory to sys.path at the beginning.
    # _That_ version of the typed_ast module doesn't have the C extensions we need.
    pytest
  nativeCheckInputs = [ pytest ];

    runHook postCheck
  preCheck = ''
    rm -rf typed_ast
  '';

  pythonImportsCheck = [
@@ -40,10 +39,10 @@ buildPythonPackage rec {
    "typed_ast.conversions"
  ];

  meta = with lib; {
  meta = {
    description = "Python AST modules with type comment support";
    homepage = "https://github.com/python/typed_ast";
    license = licenses.asl20;
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}