summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-03-01 08:19:37 +0100
committerGitHub <noreply@github.com>2024-03-01 08:19:37 +0100
commite831aee89302fd19459f5eff959891152eb673de (patch)
treea736a3fc506f3ee92576d3e562ec2006275fa806
parentMerge pull request #292438 from drupol/php/php-cs-fixer/bump/3-51-0 (diff)
parentpython312Packages.pytest-mypy-plugins: refactor (diff)
downloadnixpkgs-e831aee89302fd19459f5eff959891152eb673de.tar.gz
Merge pull request #292436 from r-ryantm/auto-update/python312Packages.pytest-mypy-plugins
python312Packages.pytest-mypy-plugins: 3.0.0 -> 3.1.0
-rw-r--r--pkgs/development/python-modules/pytest-mypy-plugins/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix
index f4c809218fb0..fb91609a027c 100644
--- a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix
+++ b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix
@@ -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
];