3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.pytest-mypy-plugins: init at 1.9.2

This commit is contained in:
Someone Serge 2021-12-19 05:10:35 +02:00
parent 15423f6249
commit eb293e3d2d
No known key found for this signature in database
GPG key ID: A39079F4AE78D20D
2 changed files with 31 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };