Merge pull request #292436 from r-ryantm/auto-update/python312Packages.pytest-mypy-plugins

python312Packages.pytest-mypy-plugins: 3.0.0 -> 3.1.0
This commit is contained in:
Fabian Affolter 2024-03-01 08:19:37 +01:00 committed by GitHub
commit e831aee893
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,23 +11,28 @@
, pythonOlder
, pyyaml
, regex
, setuptools
, tomlkit
}:
buildPythonPackage rec {
pname = "pytest-mypy-plugins";
version = "3.0.0";
format = "setuptools";
version = "3.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "typeddjango";
repo = pname;
repo = "pytest-mypy-plugins";
rev = "refs/tags/${version}";
hash = "sha256-kIA2tVOsKsav4tRqZiWCMcRgbRnxAEo7SpmxC2pt9B0=";
hash = "sha256-FXJWOeHXeKH8kDzgujOQyu3ZtIwZ5+gc4Fxod3mRRio=";
};
nativeBuildInputs = [
setuptools
];
buildInputs = [
pytest
];