lol

python310Packages.pluggy: 1.2.0 -> 1.3.0

Diff: https://github.com/pytest-dev/pluggy/compare/refs/tags/1.2.0...1.3.0

Changelog: https://github.com/pytest-dev/pluggy/blob/refs/tags/1.3.0/CHANGELOG.rst

+5 -6
+5 -6
pkgs/development/python-modules/pluggy/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pluggy"; 12 - version = "1.2.0"; 12 + version = "1.3.0"; 13 + 14 + disabled = pythonOlder "3.8"; 15 + 13 16 format = "pyproject"; 14 17 15 18 src = fetchFromGitHub { 16 19 owner = "pytest-dev"; 17 20 repo = "pluggy"; 18 21 rev = "refs/tags/${version}"; 19 - hash = "sha256-SzJu7ITdmUgusn8sz6fRBpxTMQncWIViP5NCAj4q4GM="; 22 + hash = "sha256-jLasnqmATIOoheGu90Wo1+iTCwslYzNOKckqHIZDJec="; 20 23 }; 21 24 22 25 nativeBuildInputs = [ setuptools-scm ]; 23 26 24 27 env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 25 - 26 - propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ 27 - importlib-metadata 28 - ]; 29 28 30 29 # To prevent infinite recursion with pytest 31 30 doCheck = false;