depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-mypy/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

47 lines
810 B
Nix

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