1 { lib, fetchPypi, buildPythonPackage
3 , mock, pep8, pytest }:
5 buildPythonPackage rec {
6 pname = "flake8-polyfill";
10 inherit pname version;
11 sha256 = "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4";
15 # Failed: [pytest] section in setup.cfg files is no longer supported, change to [tool:pytest] instead.
16 substituteInPlace setup.cfg \
17 --replace pytest 'tool:pytest'
20 propagatedBuildInputs = [
35 homepage = "https://gitlab.com/pycqa/flake8-polyfill";
36 description = "Polyfill package for Flake8 plugins";
37 license = licenses.mit;
38 maintainers = with maintainers; [ eadwu ];