2495e3f88b
GitOrigin-RevId: 78cd22c1b8604de423546cd49bfe264b786eca13
29 lines
678 B
Nix
29 lines
678 B
Nix
{ 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 ];
|
|
};
|
|
}
|