Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mccabe / default.nix
blob5de63b1888acdadea54571e8b848d428280c9a54
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 , hypothesis
6 , hypothesmith
7 , python
8 }:
10 buildPythonPackage rec {
11   pname = "mccabe";
12   version = "0.7.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-NI4CQMM7YLvfTlIxku+RnyjLLD19XHeU90AJKQ8jYyU=";
18   };
20   buildInputs = [
21     pytest
22   ];
24   # https://github.com/PyCQA/mccabe/issues/93
25   doCheck = false;
27   meta = with lib; {
28     description = "McCabe checker, plugin for flake8";
29     homepage = "https://github.com/flintwork/mccabe";
30     license = licenses.mit;
31     maintainers = with maintainers; [ ];
32   };