nixpkgs/pkgs/development/python-modules/types-typed-ast/default.nix
2022-01-23 01:09:26 +01:00

30 lines
592 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-typed-ast";
version = "1.5.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bY/S6pCDbLQxEayKrnzYZOCYWTyT7M66kP5G1rewxz4=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"typed_ast-stubs"
];
meta = with lib; {
description = "Typing stubs for typed-ast";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 veehaitch ];
};
}