Merge pull request #312810 from r-ryantm/auto-update/python311Packages.character-encoding-utils

python311Packages.character-encoding-utils: 0.0.7 -> 0.0.8

authored by Nick Cao and committed by GitHub a2d05c02 60035daf

+15 -17
+15 -17
pkgs/development/python-modules/character-encoding-utils/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytestCheckHook 5 - , pythonOlder 6 - , nix-update-script 7 - , hatch-vcs 8 - , hatchling 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + hatch-vcs, 6 + hatchling, 7 + pytestCheckHook, 8 + pythonOlder, 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "character-encoding-utils"; 13 - version = "0.0.7"; 13 + version = "0.0.8"; 14 + pyproject = true; 14 15 15 16 disabled = pythonOlder "3.11"; 16 17 17 18 src = fetchPypi { 18 19 pname = "character_encoding_utils"; 19 20 inherit version; 20 - hash = "sha256-cUggyNz5xphDF+7dSrx3vr3v3R8ISryHj9accMJfDbg="; 21 + hash = "sha256-UXX4L/x7fP37ZEFDCPc0KRNyx47xvwY0Jz+lfxzUulg="; 21 22 }; 22 23 23 - format = "pyproject"; 24 - 25 - nativeBuildInputs = [ 24 + build-system = [ 26 25 hatch-vcs 27 26 hatchling 28 27 ]; 29 28 30 - checkInputs = [ pytestCheckHook ]; 29 + nativeCheckInputs = [ pytestCheckHook ]; 31 30 32 - passthru.updateScript = nix-update-script { }; 31 + pythonImportsCheck = [ "character_encoding_utils" ]; 33 32 34 33 meta = { 35 - homepage = "https://github.com/TakWolf/character-encoding-utils"; 36 34 description = "Some character encoding utils"; 37 - platforms = lib.platforms.all; 35 + homepage = "https://github.com/TakWolf/character-encoding-utils"; 38 36 license = lib.licenses.mit; 39 37 maintainers = with lib.maintainers; [ h7x4 ]; 40 38 };