pythonPackages.click: 6.2 -> 6.3

Bugfix release; released on February 22 2016:
- Fix argument checks for interpreter invoke with `-m` and `-c`
  on Windows.
- Fixed a bug that cased locale detection to error out on Python 3.

Re-builds many Python packages, but no new failures on x86-64.
This commit is contained in:
Tobias Geerinckx-Rice 2016-02-23 01:41:20 +01:00
parent 818263ce46
commit e82a080303

@ -2956,11 +2956,11 @@ in modules // {
};
click = buildPythonPackage rec {
name = "click-6.2";
name = "click-6.3";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz";
sha256 = "10kavbisnk9m93jl2wi34pw7ryr2qbxshh2cysxwxd7bymqgz87v";
sha256 = "076cr1xbhfyfrzkvflz1i0950jgjn2161hp3f5xji4z1mgxdj85p";
};
buildInputs = with self; [ pytest ];