Merge pull request #179842 from LibreCybernetics/update-mypy

authored by Martin Weinelt and committed by GitHub 6b511e43 8558ab08

+8 -11
+4 -4
pkgs/development/python-modules/mypy/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "mypy"; 17 - version = "0.941"; 17 + version = "0.961"; 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "python"; 22 22 repo = "mypy"; 23 23 rev = "v${version}"; 24 - hash = "sha256-H2SWJA0WWyKV7/5miFawv4JRXu/J7H6Wer1eBL+Tru0="; 24 + hash = "sha256-K6p73+/SeWniMSD/mP09qwqFOBr/Pqohl+PaTDVpvZI="; 25 25 }; 26 26 27 27 patches = [ 28 28 # FIXME: Remove patch after upstream has decided the proper solution. 29 29 # https://github.com/python/mypy/pull/11143 30 30 (fetchpatch { 31 - url = "https://github.com/python/mypy/commit/e7869f05751561958b946b562093397027f6d5fa.patch"; 32 - hash = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM="; 31 + url = "https://github.com/python/mypy/commit/2004ae023b9d3628d9f09886cbbc20868aee8554.patch"; 32 + hash = "sha256-y+tXvgyiECO5+66YLvaje8Bz5iPvfWNIBJcsnZ2nOdI="; 33 33 }) 34 34 ]; 35 35
-4
pkgs/development/python-modules/progressbar2/default.nix
··· 16 16 17 17 propagatedBuildInputs = [ python-utils ]; 18 18 19 - # depends on unmaintained pytest-pep8 20 - # https://github.com/WoLpH/python-progressbar/issues/241 21 - doCheck = false; 22 - 23 19 pythonImportsCheck = [ "progressbar" ]; 24 20 25 21 meta = with lib; {
+4 -3
pkgs/development/python-modules/python-utils/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , loguru 4 5 , pytestCheckHook 5 6 , six 6 7 , pytest-mypy ··· 8 9 9 10 buildPythonPackage rec { 10 11 pname = "python-utils"; 11 - version = "3.1.0"; 12 + version = "3.3.3"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "WoLpH"; 15 16 repo = pname; 16 17 rev = "v${version}"; 17 - sha256 = "sha256-+NgcVIDM9f2OKBpJNWlSyFxEONltPWJSWIu400/5RkQ= 18 - "; 18 + hash = "sha256-U6yamXbG8CUrNnFmGTBpHUelZSgoaNyB2CdUSH9WdMA="; 19 19 }; 20 20 21 21 # disable coverage and linting ··· 25 25 ''; 26 26 27 27 propagatedBuildInputs = [ 28 + loguru 28 29 six 29 30 ]; 30 31