Martin Weinelt 446c5e8048
python3Packages.pytest-mypy: 0.10.3 -> 1.0.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:56 +02:00

48 lines
829 B
Nix

{
lib,
attrs,
buildPythonPackage,
fetchPypi,
filelock,
pytest,
mypy,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-mypy";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
pname = "pytest_mypy";
inherit version;
hash = "sha256-4oSi6NJ7wWowacNKtgGy9I/OupvUNdZfabfY9Bw3PW4=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
buildInputs = [ pytest ];
propagatedBuildInputs = [
attrs
mypy
filelock
];
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "pytest_mypy" ];
meta = {
description = "Mypy static type checker plugin for Pytest";
homepage = "https://github.com/dbader/pytest-mypy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}