nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.pyflakes: patch test

+9
+9
pkgs/development/python-modules/pyflakes/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , fetchPypi 5 + , fetchpatch, isPy311 5 6 , pytestCheckHook 6 7 }: 7 8 ··· 18 17 inherit pname version; 19 18 hash = "sha256-7IsnamtgvYDe/tJa3X5DmIHBnmSFCv2bNGKD1BZf0P0="; 20 19 }; 20 + 21 + patches = lib.optional isPy311 # could be made unconditional on rebuild 22 + (fetchpatch { 23 + name = "tests-py311.patch"; 24 + url = "https://github.com/PyCQA/pyflakes/commit/836631f2f73d45baa4021453d89fc9fd6f52be58.diff"; 25 + hash = "sha256-xlgql+bN0HsGnTMkwax3ZG/5wrbkUl/kQkjlr3lsgRw="; 26 + }) 27 + ; 21 28 22 29 nativeCheckInputs = [ 23 30 pytestCheckHook