Merge pull request #146698 from fabaff/bump-typed-ast

This commit is contained in:
Sandro
2021-12-29 22:58:19 +01:00
committed by GitHub
@@ -1,24 +1,24 @@
{ buildPythonPackage, fetchFromGitHub, lib, pythonOlder, pytest }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, pythonOlder
}:
buildPythonPackage rec {
pname = "typed-ast";
version = "1.5.0";
disabled = pythonOlder "3.3";
version = "1.5.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "python";
repo = "typed_ast";
rev = version;
sha256 = "sha256-z3l5gMG1Jp6EI7SnGn5ABVXVBi+bK///iJBqEWn4d+s=";
hash = "sha256-qfXMT+rSf/WcWHpkg4VZXZMYj/5IKQWAKRsxQ0TRzPU=";
};
pythonImportsCheck = [
"typed_ast"
"typed_ast.ast27"
"typed_ast.ast3"
"typed_ast.conversions"
];
checkInputs = [
pytest
];
@@ -34,9 +34,16 @@ buildPythonPackage rec {
runHook postCheck
'';
pythonImportsCheck = [
"typed_ast"
"typed_ast.ast27"
"typed_ast.ast3"
"typed_ast.conversions"
];
meta = with lib; {
description = "Python AST modules with type comment support";
homepage = "https://github.com/python/typed_ast";
description = "Python 2 and 3 ast modules with type comment support";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};