From d984c0e34b68bfcc3c6fea0e5ca882ad6ac436e4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 1 Apr 2024 04:27:15 +0000 Subject: [PATCH 1/3] python312Packages.pytest-mypy-plugins: 3.1.1 -> 3.1.2 --- .../python-modules/pytest-mypy-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix index fecc71372159..a5a9273c666c 100644 --- a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix +++ b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "pytest-mypy-plugins"; - version = "3.1.1"; + version = "3.1.2"; pyproject = true; disabled = pythonOlder "3.7"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "typeddjango"; repo = "pytest-mypy-plugins"; rev = "refs/tags/${version}"; - hash = "sha256-kZbTCdZM+809yFkKWMpeyBOq6hcqcYk7rEYqee9hZwk="; + hash = "sha256-yme1g9Kj5guao0Lf8mbkNJRw6ipS2Wd4Io1cSlEBAGo="; }; nativeBuildInputs = [ From 17cc0c938a3a0c27a90de9b751a9298d40a3565e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 Apr 2024 10:20:47 +0200 Subject: [PATCH 2/3] python312Packages.pytest-mypy-plugins: refactor --- .../python-modules/pytest-mypy-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix index a5a9273c666c..c653467efb4f 100644 --- a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix +++ b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { hash = "sha256-yme1g9Kj5guao0Lf8mbkNJRw6ipS2Wd4Io1cSlEBAGo="; }; - nativeBuildInputs = [ + build-system = [ setuptools ]; @@ -37,7 +37,7 @@ buildPythonPackage rec { pytest ]; - propagatedBuildInputs = [ + dependencies = [ decorator jinja2 jsonschema From 33f6082e991a6a0c64732ed3c22d70b8181f8848 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 Apr 2024 10:21:39 +0200 Subject: [PATCH 3/3] python312Packages.pytest-mypy-plugins: update disabled --- pkgs/development/python-modules/pytest-mypy-plugins/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix index c653467efb4f..097dabe8a39d 100644 --- a/pkgs/development/python-modules/pytest-mypy-plugins/default.nix +++ b/pkgs/development/python-modules/pytest-mypy-plugins/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { version = "3.1.2"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "typeddjango";