lol

Merge pull request #193208 from misuzu/pytest-flake8-patch

python3Packages.pytest-flake8: apply patch to fix compatibility with new flake8

authored by

Fabian Affolter and committed by
GitHub
e4f48619 c4d0026e

+10 -1
+10 -1
pkgs/development/python-modules/pytest-flake8/default.nix
··· 1 1 { lib 2 + , fetchpatch 2 3 , buildPythonPackage 3 4 , pythonOlder 4 5 , fetchPypi ··· 19 20 sha256 = "ba4f243de3cb4c2486ed9e70752c80dd4b636f7ccb27d4eba763c35ed0cd316e"; 20 21 }; 21 22 23 + patches = [ 24 + # https://github.com/tholo/pytest-flake8/issues/87 25 + # https://github.com/tholo/pytest-flake8/pull/88 26 + (fetchpatch { 27 + url = "https://github.com/tholo/pytest-flake8/commit/976e6180201f7808a3007c8c5903a1637b18c0c8.patch"; 28 + hash = "sha256-Hbcpz4fTXtXRnIWuKuDhOVpGx9H1sdQRKqxadk2s+uE="; 29 + }) 30 + ]; 31 + 22 32 propagatedBuildInputs = [ 23 33 flake8 24 34 ]; ··· 32 42 homepage = "https://github.com/tholo/pytest-flake8"; 33 43 maintainers = with lib.maintainers; [ jluttine ]; 34 44 license = lib.licenses.bsd2; 35 - broken = true; # https://github.com/tholo/pytest-flake8/issues/87 36 45 }; 37 46 }