nixpkgs/pkgs/development/python-modules/mccabe/default.nix
2021-07-21 13:32:49 +02:00

21 lines
502 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, pytest-runner }:
buildPythonPackage rec {
pname = "mccabe";
version = "0.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx";
};
buildInputs = [ pytest pytest-runner ];
meta = with lib; {
description = "McCabe checker, plugin for flake8";
homepage = "https://github.com/flintwork/mccabe";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}