summary refs log tree commit diff
path: root/pkgs/development/python-modules/mccabe/default.nix
blob: 63625b3e3b4ae4024ce99f347c7215ad0cca207b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "mccabe";
  version = "0.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx";
  };

  buildInputs = [ pytest pytestrunner ];

  meta = with stdenv.lib; {
    description = "McCabe checker, plugin for flake8";
    homepage = https://github.com/flintwork/mccabe;
    license = licenses.mit;
    maintainers = with maintainers; [ garbas ];
  };
}