nixpkgs/pkgs/development/python-modules/pytest-flake8/default.nix
Robert Schütz a0b2da3116 python310Packages.pytest-flake8: mark broken
It is incompatible with flake8 6.0.0 and currently unmaintained:
https://github.com/tholo/pytest-flake8/issues/91
2022-12-10 13:56:00 -08:00

48 lines
1.1 KiB
Nix

{ lib
, fetchpatch
, buildPythonPackage
, pythonOlder
, fetchPypi
, flake8
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-flake8";
version = "1.1.1";
disabled = pythonOlder "3.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "ba4f243de3cb4c2486ed9e70752c80dd4b636f7ccb27d4eba763c35ed0cd316e";
};
patches = [
# https://github.com/tholo/pytest-flake8/issues/87
# https://github.com/tholo/pytest-flake8/pull/88
(fetchpatch {
url = "https://github.com/tholo/pytest-flake8/commit/976e6180201f7808a3007c8c5903a1637b18c0c8.patch";
hash = "sha256-Hbcpz4fTXtXRnIWuKuDhOVpGx9H1sdQRKqxadk2s+uE=";
})
];
propagatedBuildInputs = [
flake8
];
checkInputs = [
pytestCheckHook
];
meta = {
description = "py.test plugin for efficiently checking PEP8 compliance";
homepage = "https://github.com/tholo/pytest-flake8";
maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.bsd2;
broken = lib.versionAtLeast flake8.version "6.0.0";
};
}