pythonPackages.flake8: 2.5.0 -> 2.5.1

This commit is contained in:
Frederik Rietdijk 2016-01-22 20:14:44 +01:00
parent a2805e5f33
commit 0ae31562d4
1 changed files with 5 additions and 4 deletions

View File

@ -8324,12 +8324,13 @@ in modules // {
}; };
}; };
flake8 = buildPythonPackage (rec { flake8 = buildPythonPackage rec {
name = "flake8-2.5.0"; name = "flake8-${version}";
version = "2.5.1";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz"; url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz";
sha256 = "137qwipa4z6z8z7n0zg7kg6qi3348l8ck6zqa4yyjah9xv3ch5l2"; sha256 = "448aed48b0671fe6062f47b98c3081f3a4b36fbe99ddb8ac2a3be6e6cb135603";
}; };
buildInputs = with self; [ nose mock ]; buildInputs = with self; [ nose mock ];
@ -8341,7 +8342,7 @@ in modules // {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ garbas ]; maintainers = with maintainers; [ garbas ];
}; };
}); };
flask = buildPythonPackage { flask = buildPythonPackage {
name = "flask-0.10.1"; name = "flask-0.10.1";