forked from mirrors/nixpkgs
python3Packages.pytest-mypy-plugins: init at 1.9.2
This commit is contained in:
parent
15423f6249
commit
eb293e3d2d
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, chevron
|
||||||
|
, pyyaml
|
||||||
|
, mypy
|
||||||
|
, pytest
|
||||||
|
, decorator
|
||||||
|
, regex
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-mypy-plugins";
|
||||||
|
version = "1.9.2";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "typeddjango";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-Me5P4Q2M+gGEWlUVgQ0L048rVUOlUzVMgZZcqZPeE4Q=";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ chevron pyyaml mypy pytest decorator regex ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7633,6 +7633,8 @@ in {
|
||||||
|
|
||||||
pytest-mypy = callPackage ../development/python-modules/pytest-mypy { };
|
pytest-mypy = callPackage ../development/python-modules/pytest-mypy { };
|
||||||
|
|
||||||
|
pytest-mypy-plugins = callPackage ../development/python-modules/pytest-mypy-plugins { };
|
||||||
|
|
||||||
pytest-openfiles = callPackage ../development/python-modules/pytest-openfiles { };
|
pytest-openfiles = callPackage ../development/python-modules/pytest-openfiles { };
|
||||||
|
|
||||||
pytest-order = callPackage ../development/python-modules/pytest-order { };
|
pytest-order = callPackage ../development/python-modules/pytest-order { };
|
||||||
|
|
Loading…
Reference in a new issue