depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-mypy-plugins/default.nix
Default email eeb71630af Project import generated by Copybara.
GitOrigin-RevId: 636051e353461f073ac55d5d42c1ed062a345046
2022-11-02 23:02:43 +01:00

59 lines
1,003 B
Nix

{ lib
, buildPythonPackage
, chevron
, decorator
, fetchFromGitHub
, mypy
, pytest
, pytestCheckHook
, pythonOlder
, pyyaml
, regex
}:
buildPythonPackage rec {
pname = "pytest-mypy-plugins";
version = "1.10.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "typeddjango";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-7Qow315zuZB6BNIIm6QR9ZMFH6E/VSp2vRBpONlqYhM=";
};
buildInputs = [
pytest
];
propagatedBuildInputs = [
chevron
pyyaml
mypy
decorator
regex
];
checkInputs = [
mypy
pytestCheckHook
];
preCheck = ''
export PATH="$PATH:$out/bin";
'';
pythonImportsCheck = [
"pytest_mypy_plugins"
];
meta = with lib; {
description = "Pytest plugin for testing mypy types, stubs, and plugins";
homepage = "https://github.com/TypedDjango/pytest-mypy-plugins";
license = licenses.mit;
maintainers = with maintainers; [ SomeoneSerge ];
};
}