python3Packages.mypy: propagate pathspec; python3Packages.charset-normalizer: 3.4.2 -> 3.4.3 (#435122)

authored by Martin Weinelt and committed by GitHub dde0ac2c 14cf8086

+7 -8
+4 -7
pkgs/development/python-modules/charset-normalizer/default.nix
··· 5 5 fetchFromGitHub, 6 6 mypy, 7 7 pytestCheckHook, 8 - pythonOlder, 9 8 requests, 10 9 setuptools, 11 10 setuptools-scm, ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "charset-normalizer"; 16 - version = "3.4.2"; 15 + version = "3.4.3"; 17 16 pyproject = true; 18 - 19 - disabled = pythonOlder "3.5"; 20 17 21 18 src = fetchFromGitHub { 22 - owner = "Ousret"; 19 + owner = "jawah"; 23 20 repo = "charset_normalizer"; 24 21 tag = version; 25 - hash = "sha256-PkFmNEMdp9duDCqMTKooOLAOCqHf3IjrGlr8jKYT2WE="; 22 + hash = "sha256-ZEHxBErjjvofqe3rkkgiEuEJcoluwo+2nZrLfrsHn5Q="; 26 23 }; 27 24 28 25 build-system = [ ··· 45 42 description = "Python module for encoding and language detection"; 46 43 mainProgram = "normalizer"; 47 44 homepage = "https://charset-normalizer.readthedocs.io/"; 48 - changelog = "https://github.com/Ousret/charset_normalizer/blob/${src.tag}/CHANGELOG.md"; 45 + changelog = "https://github.com/jawah/charset_normalizer/blob/${src.tag}/CHANGELOG.md"; 49 46 license = licenses.mit; 50 47 maintainers = with maintainers; [ fab ]; 51 48 };
+3 -1
pkgs/development/python-modules/mypy/default.nix
··· 38 38 pyproject = true; 39 39 40 40 # relies on several CPython internals 41 - disabled = pythonOlder "3.8" || isPyPy; 41 + disabled = isPyPy; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "python"; ··· 71 71 72 72 dependencies = [ 73 73 mypy-extensions 74 + pathspec 74 75 typing-extensions 75 76 ] 76 77 ++ lib.optionals (pythonOlder "3.11") [ tomli ]; ··· 144 145 description = "Optional static typing for Python"; 145 146 homepage = "https://www.mypy-lang.org"; 146 147 changelog = "https://github.com/python/mypy/blob/${src.rev}/CHANGELOG.md"; 148 + downloadPage = "https://github.com/python/mypy"; 147 149 license = lib.licenses.mit; 148 150 mainProgram = "mypy"; 149 151 maintainers = with lib.maintainers; [ lnl7 ];