pythonPackages.mccabe: 0.3 -> 0.4.0

This commit is contained in:
Frederik Rietdijk 2016-04-02 09:59:56 +02:00
parent 15a2c7e667
commit aed9eb04d0
1 changed files with 4 additions and 2 deletions

View File

@ -11665,11 +11665,11 @@ in modules // {
mccabe = buildPythonPackage (rec {
name = "mccabe-0.3";
name = "mccabe-0.4.0";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/m/mccabe/${name}.tar.gz";
sha256 = "3d8ca9bf65c5014f469180544d1dd5bb5b9df709aad6304f9c2e4370ae0a7b7c";
sha256 = "0yr08a36h8lqlif10l4xcikbbig7q8f41gqywir7rrvnv3mi4aws";
};
# See https://github.com/flintwork/mccabe/issues/31
@ -11681,6 +11681,8 @@ in modules // {
}}" test_mccabe.py
'';
buildInputs = with self; [ pytestrunner pytest ];
meta = {
description = "McCabe checker, plugin for flake8";
homepage = "https://github.com/flintwork/mccabe";