Files
nixpkgs/pkgs/development/python-modules/mccabe/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

33 lines
592 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytest,
hypothesis,
hypothesmith,
python,
}:
buildPythonPackage rec {
pname = "mccabe";
version = "0.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-NI4CQMM7YLvfTlIxku+RnyjLLD19XHeU90AJKQ8jYyU=";
};
buildInputs = [ pytest ];
# https://github.com/PyCQA/mccabe/issues/93
doCheck = false;
meta = with lib; {
description = "McCabe checker, plugin for flake8";
homepage = "https://github.com/flintwork/mccabe";
license = licenses.mit;
maintainers = [ ];
};
}