python3Packages.types-typed-ast: 1.5.0 -> 1.5.1

This commit is contained in:
Fabian Affolter 2021-12-29 18:02:03 +01:00
parent d53978239b
commit 187396f80f

View File

@ -5,17 +5,20 @@
buildPythonPackage rec {
pname = "types-typed-ast";
version = "1.5.0";
version = "1.5.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-2Op5y/vFIL6Nm8jeSHL0SzQtvbwJFmfi8hsDu9eWkVA=";
hash = "sha256-UQ876qlUkrNUTWfoFYGvopA8dktwiJ/82yhubGJn0pc=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "typed_ast-stubs" ];
pythonImportsCheck = [
"typed_ast-stubs"
];
meta = with lib; {
description = "Typing stubs for typed-ast";