linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-mypy / default.nix
blob370416c4aa82c2a15f546084a83509ce74e62f5d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , filelock
5 , pytest
6 , mypy
7 , setuptools_scm
8 }:
10 buildPythonPackage rec {
11   pname = "pytest-mypy";
12   version = "0.8.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "63d418a4fea7d598ac40b659723c00804d16a251d90a5cfbca213eeba5aaf01c";
17   };
19   nativeBuildInputs = [ setuptools_scm ];
21   buildInputs = [ pytest ];
23   propagatedBuildInputs = [ mypy filelock ];
25   # does not contain tests
26   doCheck = false;
27   pythonImportsCheck = [ "pytest_mypy" ];
29   meta = with lib; {
30     description = "Mypy static type checker plugin for Pytest";
31     homepage = "https://github.com/dbader/pytest-mypy";
32     license = licenses.mit;
33     maintainers = [ maintainers.costrouc ];
34   };