linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / flake8-polyfill / default.nix
blob050a6d4f9c8a52b8951da9b81a67883873a581e1
1 { lib, fetchPypi, buildPythonPackage
2 , flake8
3 , mock, pep8, pytest }:
5 buildPythonPackage rec {
6   pname = "flake8-polyfill";
7   version = "1.0.2";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4";
12   };
14   postPatch = ''
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'
18   '';
20   propagatedBuildInputs = [
21     flake8
22   ];
24   checkInputs = [
25     mock
26     pep8
27     pytest
28   ];
30   checkPhase = ''
31     pytest tests
32   '';
34   meta = with lib; {
35     homepage = "https://gitlab.com/pycqa/flake8-polyfill";
36     description = "Polyfill package for Flake8 plugins";
37     license = licenses.mit;
38     maintainers = with maintainers; [ eadwu ];
39   };