1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

Merge pull request #152604 from fabaff/bump-types-typed-ast

This commit is contained in:
Sandro 2022-01-02 11:28:34 +01:00 committed by GitHub
commit 1c8c4e9b1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";