1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Revert "mccabe_0_4: init at 0.4.0. Apparently, flake8 of the current default version needs older mccabe"

This reverts commit 8eae96d70c.

---

mccabe was already reverted
This commit is contained in:
Alexander Ried 2016-10-02 13:10:42 +02:00
parent e13aea41e0
commit 3b7fcc031e

View file

@ -10547,7 +10547,7 @@ in modules // {
};
buildInputs = with self; [ nose mock ];
propagatedBuildInputs = with self; [ pyflakes pep8 mccabe_0_4 ];
propagatedBuildInputs = with self; [ pyflakes pep8 mccabe ];
meta = {
description = "Code checking using pep8 and pyflakes";
@ -13498,24 +13498,6 @@ in modules // {
};
});
mccabe_0_4 = buildPythonPackage (rec {
name = "mccabe-0.4.0";
src = pkgs.fetchurl {
url = "mirror://pypi/m/mccabe/${name}.tar.gz";
sha256 = "0yr08a36h8lqlif10l4xcikbbig7q8f41gqywir7rrvnv3mi4aws";
};
buildInputs = with self; [ pytestrunner pytest ];
meta = {
description = "McCabe checker, plugin for flake8";
homepage = "https://github.com/flintwork/mccabe";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
});
mechanize = buildPythonPackage (rec {
name = "mechanize-0.2.5";