blob: 05f68afd25d8736f7a6e9b522ca3e1d77fa98801 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local pip3 = require "mason-core.managers.pip3"
return Pkg.new {
name = "mypy",
desc = [[Mypy is a static type checker for Python. ]],
homepage = "https://github.com/python/mypy",
languages = { Pkg.Lang.Python },
categories = { Pkg.Cat.Linter },
install = pip3.packages { "mypy", bin = { "mypy" } },
}
|