Merge pull request #152604 from fabaff/bump-types-typed-ast
This commit is contained in:
commit
1c8c4e9b1e
1 changed files with 6 additions and 3 deletions
|
@ -5,17 +5,20 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "types-typed-ast";
|
pname = "types-typed-ast";
|
||||||
version = "1.5.0";
|
version = "1.5.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-2Op5y/vFIL6Nm8jeSHL0SzQtvbwJFmfi8hsDu9eWkVA=";
|
hash = "sha256-UQ876qlUkrNUTWfoFYGvopA8dktwiJ/82yhubGJn0pc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Module doesn't have tests
|
# Module doesn't have tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "typed_ast-stubs" ];
|
pythonImportsCheck = [
|
||||||
|
"typed_ast-stubs"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Typing stubs for typed-ast";
|
description = "Typing stubs for typed-ast";
|
||||||
|
|
Loading…
Reference in a new issue